for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Governator\Tests\Integration;
use Symfony\Component\Cache\Adapter\FilesystemAdapter;
use Zenstruck\Governator\Store;
use Zenstruck\Governator\Store\Psr6CacheStore;
/**
* @group time-sensitive
*
* @author Kevin Bond <[email protected]>
*/
final class Psr6CacheThrottleTest extends BaseThrottleTest
{
protected function createStore(): Store
return new Psr6CacheStore(new FilesystemAdapter());
}