Skip to content

Commit c15996e

Browse files
committed
Resolve merge conflicts
2 parents f40514e + 3c322fc commit c15996e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

src/Client.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -346,29 +346,29 @@ public function createCommand($commandID, $arguments = [])
346346
}
347347

348348
/**
349-
* @param $name
349+
* @param string $name
350350
* @return ContainerInterface
351351
*/
352-
public function __get($name)
352+
public function __get(string $name)
353353
{
354354
return ContainerFactory::create($this, $name);
355355
}
356356

357357
/**
358-
* @param $name
359-
* @param $value
358+
* @param string $name
359+
* @param mixed $value
360360
* @return mixed
361361
*/
362-
public function __set($name, $value)
362+
public function __set(string $name, $value)
363363
{
364364
throw new RuntimeException('Not allowed');
365365
}
366366

367367
/**
368-
* @param $name
368+
* @param string $name
369369
* @return mixed
370370
*/
371-
public function __isset($name)
371+
public function __isset(string $name)
372372
{
373373
throw new RuntimeException('Not allowed');
374374
}

src/Command/Redis/Container/AbstractContainer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function __construct(ClientInterface $client)
2929
/**
3030
* {@inheritDoc}
3131
*/
32-
public function __call($subcommandID, $arguments)
32+
public function __call(string $subcommandID, array $arguments)
3333
{
3434
array_unshift($arguments, strtoupper($subcommandID));
3535

src/Command/Redis/Container/ContainerInterface.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ interface ContainerInterface
1818
* Creates Redis container command with subcommand as virtual method name
1919
* and sends a request to the server.
2020
*
21-
* @param $subcommandID
22-
* @param $arguments
21+
* @param string $subcommandID
22+
* @param array $arguments
2323
* @return mixed
2424
*/
25-
public function __call($subcommandID, $arguments);
25+
public function __call(string $subcommandID, array $arguments);
2626

2727
/**
2828
* Returns containerCommandId of specific container command.

tests/PHPUnit/OneOfConstraint.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ protected function matches($other): bool
4444
}
4545

4646
/**
47-
* @param $other
47+
* @param mixed $other
4848
* @return string
4949
*/
5050
protected function failureDescription($other): string

0 commit comments

Comments
 (0)