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.

ClearableService.php 189B

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