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

14 lines
190 B
PHP

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