mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-13 13:04:13 +01:00
14 lines
189 B
PHP
14 lines
189 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\HttpKernel\Tests\Fixtures;
|
|
|
|
class ClearableService
|
|
{
|
|
public static $counter = 0;
|
|
|
|
public function clear()
|
|
{
|
|
++self::$counter;
|
|
}
|
|
}
|