Remove unneeded "use" imports.

This commit is contained in:
Daniele Alessandri
2015-07-24 19:05:28 +02:00
parent c436e01353
commit 7282ca2b52
40 changed files with 78 additions and 149 deletions
+1 -2
View File
@@ -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 = '';