mirror of
https://github.com/predis/predis.git
synced 2026-08-24 13:39:27 +00:00
[phpdoc] Fix undefined namespaces.
This commit is contained in:
@@ -86,7 +86,7 @@ class StringSetBitTest extends PredisCommandTestCase
|
||||
|
||||
/**
|
||||
* @group connected
|
||||
* @expectedException Predis\Response\ServerException
|
||||
* @expectedException \Predis\Response\ServerException
|
||||
* @expectedExceptionMessage ERR bit is not an integer or out of range
|
||||
*/
|
||||
public function testThrowsExceptionOnInvalidBitValue()
|
||||
@@ -96,7 +96,7 @@ class StringSetBitTest extends PredisCommandTestCase
|
||||
|
||||
/**
|
||||
* @group connected
|
||||
* @expectedException Predis\Response\ServerException
|
||||
* @expectedException \Predis\Response\ServerException
|
||||
* @expectedExceptionMessage ERR bit offset is not an integer or out of range
|
||||
*/
|
||||
public function testThrowsExceptionOnNegativeOffset()
|
||||
@@ -106,7 +106,7 @@ class StringSetBitTest extends PredisCommandTestCase
|
||||
|
||||
/**
|
||||
* @group connected
|
||||
* @expectedException Predis\Response\ServerException
|
||||
* @expectedException \Predis\Response\ServerException
|
||||
* @expectedExceptionMessage ERR bit offset is not an integer or out of range
|
||||
*/
|
||||
public function testThrowsExceptionOnInvalidOffset()
|
||||
@@ -116,7 +116,7 @@ class StringSetBitTest extends PredisCommandTestCase
|
||||
|
||||
/**
|
||||
* @group connected
|
||||
* @expectedException Predis\Response\ServerException
|
||||
* @expectedException \Predis\Response\ServerException
|
||||
* @expectedExceptionMessage Operation against a key holding the wrong kind of value
|
||||
*/
|
||||
public function testThrowsExceptionOnWrongType()
|
||||
|
||||
Reference in New Issue
Block a user