|
@@ -1419,7 +1419,7 @@ class TcpConnection extends Connection implements IConnectionSingle {
|
|
}
|
|
}
|
|
|
|
|
|
public function readBytes($length) {
|
|
public function readBytes($length) {
|
|
- if ($length == 0) {
|
|
|
|
|
|
+ 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();
|
|
$socket = $this->getSocket();
|