We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hyperf\Collection\Enumerable
Hyperf\ViewEngine\Contract\Enumerable
1 parent 85bea22 commit f48a262Copy full SHA for f48a262
tests/RedisProxyTest.php
@@ -197,10 +197,10 @@ public function testRedisPipeline()
197
}
198
199
/**
200
- * @param mixed $optinos
+ * @param mixed $options
201
* @return \Redis|Redis
202
*/
203
- private function getRedis($optinos = [])
+ private function getRedis($options = [])
204
{
205
$container = Mockery::mock(Container::class);
206
$container->shouldReceive('has')->with(StdoutLoggerInterface::class)->andReturnFalse();
@@ -211,7 +211,7 @@ private function getRedis($optinos = [])
211
'auth' => null,
212
'port' => 6379,
213
'db' => 0,
214
- 'options' => $optinos,
+ 'options' => $options,
215
'pool' => [
216
'min_connections' => 1,
217
'max_connections' => 30,
0 commit comments