[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
+3 -3
View File
@@ -83,7 +83,7 @@ class StringSetExpireTest extends PredisCommandTestCase
/**
* @group connected
* @expectedException Predis\Response\ServerException
* @expectedException \Predis\Response\ServerException
* @expectedExceptionMessage ERR value is not an integer or out of range
*/
public function testThrowsExceptionOnNonIntegerTTL()
@@ -93,7 +93,7 @@ class StringSetExpireTest extends PredisCommandTestCase
/**
* @group connected
* @expectedException Predis\Response\ServerException
* @expectedException \Predis\Response\ServerException
* @expectedExceptionMessage ERR invalid expire time in SETEX
*/
public function testThrowsExceptionOnZeroTTL()
@@ -103,7 +103,7 @@ class StringSetExpireTest extends PredisCommandTestCase
/**
* @group connected
* @expectedException Predis\Response\ServerException
* @expectedException \Predis\Response\ServerException
* @expectedExceptionMessage ERR invalid expire time in SETEX
*/
public function testThrowsExceptionOnNegativeTTL()