Files
bm/public_html/vendor/symfony/http-kernel/Tests/Fixtures/ClearableService.php
2025-09-24 13:26:28 +02:00

14 lines
189 B
PHP

<?php
namespace Symfony\Component\HttpKernel\Tests\Fixtures;
class ClearableService
{
public static $counter = 0;
public function clear()
{
++self::$counter;
}
}