ResettableService.php 190 B

12345678910111213
  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. }