[phpdoc] Fix undefined namespaces.

This commit is contained in:
Daniele Alessandri
2014-07-27 21:42:24 +02:00
parent fff303a03b
commit aa5c893d5a
131 changed files with 193 additions and 193 deletions
+4 -4
View File
@@ -394,7 +394,7 @@ class ClientTest extends PredisTestCase
/**
* @group disconnected
* @expectedException Predis\Response\ServerException
* @expectedException \Predis\Response\ServerException
* @expectedExceptionMessage Operation against a key holding the wrong kind of value
*/
public function testExecuteCommandThrowsExceptionOnRedisError()
@@ -457,7 +457,7 @@ class ClientTest extends PredisTestCase
/**
* @group disconnected
* @expectedException Predis\Response\ServerException
* @expectedException \Predis\Response\ServerException
* @expectedExceptionMessage Operation against a key holding the wrong kind of value
*/
public function testCallingRedisCommandThrowsExceptionOnServerError()
@@ -565,7 +565,7 @@ class ClientTest extends PredisTestCase
/**
* @group disconnected
* @expectedException Predis\ClientException
* @expectedException \Predis\ClientException
* @expectedExceptionMessage Command 'INVALIDCOMMAND' is not a registered Redis command.
*/
public function testThrowsExceptionOnNonRegisteredRedisCommand()
@@ -591,7 +591,7 @@ class ClientTest extends PredisTestCase
/**
* @group disconnected
* @expectedException Predis\NotSupportedException
* @expectedException \Predis\NotSupportedException
* @expectedExceptionMessage Retrieving connections by ID is supported only by aggregate connections.
*/
public function testGetConnectionByIdWorksOnlyWithAggregateConnections()