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