Bugfix: missing backslash for root namespace.

This commit is contained in:
Daniele Alessandri
2010-04-10 16:44:50 +02:00
parent 2272982364
commit ea04aa67c6
+1 -1
View File
@@ -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 = '';