Minor code styling and phpdoc changes.

This commit is contained in:
Daniele Alessandri
2014-07-28 12:04:07 +02:00
parent 5c02e4e47b
commit df653a7c00
21 changed files with 34 additions and 65 deletions
+2 -4
View File
@@ -477,7 +477,7 @@ class Client implements ClientInterface
*
* @param mixed ... Array of options, a callable for execution, or both.
*
* @return PubSubConsumer|NULL
* @return PubSubConsumer|null
*/
public function pubSubLoop(/* arguments */)
{
@@ -490,7 +490,7 @@ class Client implements ClientInterface
* @param array $options Options for the context.
* @param mixed $callable Optional callable used to execute the context.
*
* @return PubSubConsumer|NULL
* @return PubSubConsumer|null
*/
protected function createPubSub(array $options = null, $callable = null)
{
@@ -505,8 +505,6 @@ class Client implements ClientInterface
$pubsub->stop();
}
}
return null;
}
/**