for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Governator\Tests\Integration\Redis;
use Zenstruck\Governator\Store;
use Zenstruck\Governator\Store\RedisStore;
use Zenstruck\Governator\Tests\Integration\BaseThrottleTest;
/**
* @author Kevin Bond <[email protected]>
*/
abstract class BaseRedisThrottleTest extends BaseThrottleTest
{
protected function createStore(): Store
return new RedisStore($this->createConnection());
}
abstract protected function createConnection(): object;