ClearableService.php 189B

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