Big batch of phpdoc improvements and minor code styling fixes.

This commit is contained in:
Daniele Alessandri
2013-12-10 19:21:52 +01:00
parent 8744285cb3
commit 59b5658cf5
77 changed files with 361 additions and 336 deletions
+3 -3
View File
@@ -14,8 +14,8 @@ namespace Predis;
use Predis\Command\CommandInterface;
/**
* Defines the interface of a basic client object or abstraction that
* can send commands to Redis.
* Defines the interface of a basic client class or abstraction that can send
* commands to Redis.
*
* @author Daniele Alessandri <suppakilla@gmail.com>
*/
@@ -24,7 +24,7 @@ interface BasicClientInterface
/**
* Executes the specified Redis command.
*
* @param CommandInterface $command A Redis command.
* @param CommandInterface $command Command instance.
* @return mixed
*/
public function executeCommand(CommandInterface $command);