ResettableService.php 190B

1234567891011121314
  1. <?php
  2. namespace Symfony\Component\HttpKernel\Tests\Fixtures;
  3. class ResettableService
  4. {
  5. public static $counter = 0;
  6. public function reset()
  7. {
  8. ++self::$counter;
  9. }
  10. }