MultiResettableService.php 347 B

12345678910111213141516171819
  1. <?php
  2. namespace Symfony\Component\HttpKernel\Tests\Fixtures;
  3. class MultiResettableService
  4. {
  5. public static $resetFirstCounter = 0;
  6. public static $resetSecondCounter = 0;
  7. public function resetFirst()
  8. {
  9. ++self::$resetFirstCounter;
  10. }
  11. public function resetSecond()
  12. {
  13. ++self::$resetSecondCounter;
  14. }
  15. }