This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpKernel/Tests/Fixtures/MultiResettableService.php
2019-11-26 10:37:14 +01:00

20 lines
347 B
PHP

<?php
namespace Symfony\Component\HttpKernel\Tests\Fixtures;
class MultiResettableService
{
public static $resetFirstCounter = 0;
public static $resetSecondCounter = 0;
public function resetFirst()
{
++self::$resetFirstCounter;
}
public function resetSecond()
{
++self::$resetSecondCounter;
}
}