Fix phpdocs for fluent interfaces.

Backported from a092f6d (master).

[ci skip]
This commit is contained in:
Daniele Alessandri
2013-12-22 16:47:41 +01:00
parent e778baa491
commit 0fb7674762
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -65,9 +65,9 @@ class PipelineContext implements BasicClientInterface, ExecutableContextInterfac
/**
* Queues a command into the pipeline buffer.
*
* @param string $method Command ID.
* @param array $arguments Arguments for the command.
* @return PipelineContext
* @param string $method Command ID.
* @param array $arguments Arguments for the command.
* @return $this
*/
public function __call($method, $arguments)
{
+2 -2
View File
@@ -200,8 +200,8 @@ class MultiExecContext implements BasicClientInterface, ExecutableContextInterfa
/**
* Executes the specified Redis command.
*
* @param CommandInterface $command A Redis command.
* @return mixed
* @param CommandInterface $command Command instance.
* @return $this|mixed
*/
public function executeCommand(CommandInterface $command)
{