Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ResettableService.php 190B

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