mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-05 08:48:47 +00:00
Initial commit
This commit is contained in:
13
vendor/symfony/http-kernel/Tests/Fixtures/ResettableService.php
vendored
Normal file
13
vendor/symfony/http-kernel/Tests/Fixtures/ResettableService.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Symfony\Component\HttpKernel\Tests\Fixtures;
|
||||
|
||||
class ResettableService
|
||||
{
|
||||
public static $counter = 0;
|
||||
|
||||
public function reset()
|
||||
{
|
||||
++self::$counter;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user