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
@@ -11,7 +11,6 @@
namespace Predis\Configuration;
use stdClass;
use PredisTestCase;
/**
@@ -61,7 +60,7 @@ class ExceptionsOptionTest extends PredisTestCase
$option = new ExceptionsOption();
$options = $this->getMock('Predis\Configuration\OptionsInterface');
$this->assertFalse($option->filter($options, new stdClass()));
$this->assertFalse($option->filter($options, new \stdClass()));
$this->assertFalse($option->filter($options, 'invalid'));
}
}