|
22 | 22 | */
|
23 | 23 | abstract class PredisTestCase extends \PHPUnit\Framework\TestCase
|
24 | 24 | {
|
25 |
| - protected $redisServerVersion = null; |
| 25 | + protected $redisServerVersion; |
26 | 26 | protected $redisJsonVersion;
|
27 | 27 |
|
28 | 28 | /**
|
@@ -73,7 +73,7 @@ protected function sleep(float $seconds): void
|
73 | 73 | *
|
74 | 74 | * @return RedisCommandConstraint
|
75 | 75 | */
|
76 |
| - public function isRedisCommand($command = null, ?array $arguments = null): RedisCommandConstraint |
| 76 | + public function isRedisCommand($command = null, array $arguments = null): RedisCommandConstraint |
77 | 77 | {
|
78 | 78 | return new RedisCommandConstraint($command, $arguments);
|
79 | 79 | }
|
@@ -224,7 +224,7 @@ protected function getCommandFactory(): Command\Factory
|
224 | 224 | *
|
225 | 225 | * @return Client
|
226 | 226 | */
|
227 |
| - protected function createClient(?array $parameters = null, ?array $options = null, ?bool $flushdb = true): Client |
| 227 | + protected function createClient(array $parameters = null, array $options = null, ?bool $flushdb = true): Client |
228 | 228 | {
|
229 | 229 | $parameters = array_merge(
|
230 | 230 | $this->getDefaultParametersArray(),
|
@@ -300,7 +300,6 @@ protected function getMockConnectionOfType(string $interface, $parameters = null
|
300 | 300 | * the default connection parameters used by Predis or a set of connection
|
301 | 301 | * parameters specified in the optional second argument.
|
302 | 302 | *
|
303 |
| -
|
304 | 303 | * @param array|string|null $parameters Optional connection parameters
|
305 | 304 | *
|
306 | 305 | * @return MockObject|Connection\NodeConnectionInterface
|
@@ -362,9 +361,9 @@ protected function getRequiredRedisServerVersion(): ?string
|
362 | 361 | $this->getName(false)
|
363 | 362 | );
|
364 | 363 |
|
365 |
| - if (isset($annotations['method']['requiresRedisVersion'], $annotations['method']['group']) && |
366 |
| - !empty($annotations['method']['requiresRedisVersion']) && |
367 |
| - in_array('connected', $annotations['method']['group']) |
| 364 | + if (isset($annotations['method']['requiresRedisVersion'], $annotations['method']['group']) |
| 365 | + && !empty($annotations['method']['requiresRedisVersion']) |
| 366 | + && in_array('connected', $annotations['method']['group']) |
368 | 367 | ) {
|
369 | 368 | return $annotations['method']['requiresRedisVersion'][0];
|
370 | 369 | }
|
@@ -517,9 +516,9 @@ protected function getRequiredModuleVersion(string $module): ?string
|
517 | 516 | $this->getName(false)
|
518 | 517 | );
|
519 | 518 |
|
520 |
| - if (isset($annotations['method'][$moduleAnnotation], $annotations['method']['group']) && |
521 |
| - !empty($annotations['method'][$moduleAnnotation]) && |
522 |
| - in_array('connected', $annotations['method']['group'], true) |
| 519 | + if (isset($annotations['method'][$moduleAnnotation], $annotations['method']['group']) |
| 520 | + && !empty($annotations['method'][$moduleAnnotation]) |
| 521 | + && in_array('connected', $annotations['method']['group'], true) |
523 | 522 | ) {
|
524 | 523 | return $annotations['method'][$moduleAnnotation][0];
|
525 | 524 | }
|
|
0 commit comments