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