freescout/freescout-dist/vendor/symfony/http-kernel/Tests/Fixtures/ResettableService.php

14 lines
190 B
PHP
Raw Normal View History

2023-12-22 19:40:32 +00:00
<?php
namespace Symfony\Component\HttpKernel\Tests\Fixtures;
class ResettableService
{
public static $counter = 0;
public function reset()
{
++self::$counter;
}
}