vd/vendor/symfony/http-kernel/Tests/Fixtures/ClearableService.php
2018-11-05 09:26:30 +08:00

14 lines
189 B
PHP

<?php
namespace Symfony\Component\HttpKernel\Tests\Fixtures;
class ClearableService
{
public static $counter = 0;
public function clear()
{
++self::$counter;
}
}