Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / http-kernel / Tests / Fixtures / ResettableService.php
1 <?php
2
3 namespace Symfony\Component\HttpKernel\Tests\Fixtures;
4
5 class ResettableService
6 {
7     public static $counter = 0;
8
9     public function reset()
10     {
11         ++self::$counter;
12     }
13 }