mirror of
https://github.com/predis/predis.git
synced 2026-08-28 11:09:49 +00:00
Remove unneeded "use" imports.
This commit is contained in:
@@ -11,7 +11,6 @@
|
||||
|
||||
namespace Predis\Connection;
|
||||
|
||||
use InvalidArgumentException;
|
||||
use Predis\Command\CommandInterface;
|
||||
use Predis\Protocol\ProtocolProcessorInterface;
|
||||
use Predis\Protocol\Text\ProtocolProcessor as TextProtocolProcessor;
|
||||
@@ -60,7 +59,7 @@ class CompositeStreamConnection extends StreamConnection implements CompositeCon
|
||||
public function readBuffer($length)
|
||||
{
|
||||
if ($length <= 0) {
|
||||
throw new InvalidArgumentException('Length parameter must be greater than 0.');
|
||||
throw new \InvalidArgumentException('Length parameter must be greater than 0.');
|
||||
}
|
||||
|
||||
$value = '';
|
||||
|
||||
Reference in New Issue
Block a user