| Current Path : /proc/self/cwd/vendor/symfony/http-kernel/Tests/Fixtures/ |
| Current File : //proc/self/cwd/vendor/symfony/http-kernel/Tests/Fixtures/ClearableService.php |
<?php
namespace Symfony\Component\HttpKernel\Tests\Fixtures;
class ClearableService
{
public static $counter = 0;
public function clear()
{
++self::$counter;
}
}