mirror of
https://github.com/predis/predis.git
synced 2026-09-14 04:17:14 +00:00
Bugfix: missing backslash for root namespace.
This commit is contained in:
+1
-1
@@ -914,7 +914,7 @@ class Connection implements IConnection {
|
||||
|
||||
public function readBytes($length) {
|
||||
if ($length == 0) {
|
||||
throw new InvalidArgumentException('Length parameter must be greater than 0');
|
||||
throw new \InvalidArgumentException('Length parameter must be greater than 0');
|
||||
}
|
||||
$socket = $this->getSocket();
|
||||
$value = '';
|
||||
|
||||
Reference in New Issue
Block a user