freescout/freescout-dist/vendor/symfony/http-kernel/Tests/Fixtures/ClearableService.php

14 lines
189 B
PHP
Raw Normal View History

2023-12-22 19:40:32 +00:00
<?php
namespace Symfony\Component\HttpKernel\Tests\Fixtures;
class ClearableService
{
public static $counter = 0;
public function clear()
{
++self::$counter;
}
}