diff --git a/tests/PHPUnit/ArrayHasSameValuesConstraint.php b/tests/PHPUnit/ArrayHasSameValuesConstraint.php index c19cb781..536fd8ed 100644 --- a/tests/PHPUnit/ArrayHasSameValuesConstraint.php +++ b/tests/PHPUnit/ArrayHasSameValuesConstraint.php @@ -9,9 +9,6 @@ * file that was distributed with this source code. */ -use \PHPUnit_Framework_Constraint; -use \PHPUnit_Framework_ExpectationFailedException; - /** * Constraint that accepts arrays with the same elements but different order. */ diff --git a/tests/PHPUnit/CommandTestCase.php b/tests/PHPUnit/CommandTestCase.php index a0324943..8cf693d2 100644 --- a/tests/PHPUnit/CommandTestCase.php +++ b/tests/PHPUnit/CommandTestCase.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/PHPUnit/ConnectionTestCase.php b/tests/PHPUnit/ConnectionTestCase.php index fb17aaad..33f3995c 100644 --- a/tests/PHPUnit/ConnectionTestCase.php +++ b/tests/PHPUnit/ConnectionTestCase.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; diff --git a/tests/PHPUnit/DistributionStrategyTestCase.php b/tests/PHPUnit/DistributionStrategyTestCase.php index 1097d488..722dad74 100644 --- a/tests/PHPUnit/DistributionStrategyTestCase.php +++ b/tests/PHPUnit/DistributionStrategyTestCase.php @@ -11,7 +11,7 @@ namespace Predis\Cluster\Distribution; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/PHPUnit/ServerVersionTestCase.php b/tests/PHPUnit/ServerVersionTestCase.php index aef28a34..e3012d8c 100644 --- a/tests/PHPUnit/ServerVersionTestCase.php +++ b/tests/PHPUnit/ServerVersionTestCase.php @@ -11,7 +11,7 @@ namespace Predis\Profile; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/ClientExceptionTest.php b/tests/Predis/ClientExceptionTest.php index 13e6c94e..1702d9bc 100644 --- a/tests/Predis/ClientExceptionTest.php +++ b/tests/Predis/ClientExceptionTest.php @@ -11,7 +11,7 @@ namespace Predis; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/ClientTest.php b/tests/Predis/ClientTest.php index cdabcca6..09c06ceb 100644 --- a/tests/Predis/ClientTest.php +++ b/tests/Predis/ClientTest.php @@ -11,7 +11,7 @@ namespace Predis; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Connection\ConnectionFactory; use Predis\Connection\MasterSlaveReplication; diff --git a/tests/Predis/Cluster/Distribution/EmptyRingExceptionTest.php b/tests/Predis/Cluster/Distribution/EmptyRingExceptionTest.php index 9a11e0c4..cde51a79 100644 --- a/tests/Predis/Cluster/Distribution/EmptyRingExceptionTest.php +++ b/tests/Predis/Cluster/Distribution/EmptyRingExceptionTest.php @@ -11,7 +11,7 @@ namespace Predis\Cluster\Distribution; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @todo Not really useful right now. diff --git a/tests/Predis/Cluster/PredisClusterHashStrategyTest.php b/tests/Predis/Cluster/PredisClusterHashStrategyTest.php index 1d907459..0e57f693 100644 --- a/tests/Predis/Cluster/PredisClusterHashStrategyTest.php +++ b/tests/Predis/Cluster/PredisClusterHashStrategyTest.php @@ -11,7 +11,7 @@ namespace Predis\Cluster; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Cluster\Distribution\HashRing; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Cluster/RedisClusterHashStrategyTest.php b/tests/Predis/Cluster/RedisClusterHashStrategyTest.php index dd89ac09..01d820aa 100644 --- a/tests/Predis/Cluster/RedisClusterHashStrategyTest.php +++ b/tests/Predis/Cluster/RedisClusterHashStrategyTest.php @@ -11,7 +11,7 @@ namespace Predis\Cluster; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Collection/Iterator/HashKeyTest.php b/tests/Predis/Collection/Iterator/HashKeyTest.php index 4fc11493..e2793b87 100644 --- a/tests/Predis/Collection/Iterator/HashKeyTest.php +++ b/tests/Predis/Collection/Iterator/HashKeyTest.php @@ -11,7 +11,7 @@ namespace Predis\Collection\Iterator; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Collection/Iterator/KeyspaceTest.php b/tests/Predis/Collection/Iterator/KeyspaceTest.php index 28ad9390..b842e280 100644 --- a/tests/Predis/Collection/Iterator/KeyspaceTest.php +++ b/tests/Predis/Collection/Iterator/KeyspaceTest.php @@ -11,7 +11,7 @@ namespace Predis\Collection\Iterator; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Collection/Iterator/ListKeyTest.php b/tests/Predis/Collection/Iterator/ListKeyTest.php index ec789423..56e724ff 100644 --- a/tests/Predis/Collection/Iterator/ListKeyTest.php +++ b/tests/Predis/Collection/Iterator/ListKeyTest.php @@ -11,7 +11,7 @@ namespace Predis\Collection\Iterator; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Collection/Iterator/SetKeyTest.php b/tests/Predis/Collection/Iterator/SetKeyTest.php index ba2d7776..d390c923 100644 --- a/tests/Predis/Collection/Iterator/SetKeyTest.php +++ b/tests/Predis/Collection/Iterator/SetKeyTest.php @@ -11,7 +11,7 @@ namespace Predis\Collection\Iterator; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Collection/Iterator/SortedSetKeyTest.php b/tests/Predis/Collection/Iterator/SortedSetKeyTest.php index c4485052..48576c42 100644 --- a/tests/Predis/Collection/Iterator/SortedSetKeyTest.php +++ b/tests/Predis/Collection/Iterator/SortedSetKeyTest.php @@ -11,7 +11,7 @@ namespace Predis\Collection\Iterator; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Command/CommandTest.php b/tests/Predis/Command/CommandTest.php index 7cb3f884..f76bd6ec 100644 --- a/tests/Predis/Command/CommandTest.php +++ b/tests/Predis/Command/CommandTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Command/ConnectionAuthTest.php b/tests/Predis/Command/ConnectionAuthTest.php index 03cd7a32..db02fa0d 100644 --- a/tests/Predis/Command/ConnectionAuthTest.php +++ b/tests/Predis/Command/ConnectionAuthTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ConnectionEchoTest.php b/tests/Predis/Command/ConnectionEchoTest.php index ef7fa775..f8ad3459 100644 --- a/tests/Predis/Command/ConnectionEchoTest.php +++ b/tests/Predis/Command/ConnectionEchoTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ConnectionPingTest.php b/tests/Predis/Command/ConnectionPingTest.php index 0b60e7ef..1b6b377e 100644 --- a/tests/Predis/Command/ConnectionPingTest.php +++ b/tests/Predis/Command/ConnectionPingTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ConnectionQuitTest.php b/tests/Predis/Command/ConnectionQuitTest.php index 70ac484d..ef76dc6d 100644 --- a/tests/Predis/Command/ConnectionQuitTest.php +++ b/tests/Predis/Command/ConnectionQuitTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ConnectionSelectTest.php b/tests/Predis/Command/ConnectionSelectTest.php index 90b8fc22..3fca4be5 100644 --- a/tests/Predis/Command/ConnectionSelectTest.php +++ b/tests/Predis/Command/ConnectionSelectTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashDeleteTest.php b/tests/Predis/Command/HashDeleteTest.php index 7f3f6b81..90fff5c1 100644 --- a/tests/Predis/Command/HashDeleteTest.php +++ b/tests/Predis/Command/HashDeleteTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashExistsTest.php b/tests/Predis/Command/HashExistsTest.php index 451418ef..2b830116 100644 --- a/tests/Predis/Command/HashExistsTest.php +++ b/tests/Predis/Command/HashExistsTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashGetAllTest.php b/tests/Predis/Command/HashGetAllTest.php index 198360b8..7655a782 100644 --- a/tests/Predis/Command/HashGetAllTest.php +++ b/tests/Predis/Command/HashGetAllTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashGetMultipleTest.php b/tests/Predis/Command/HashGetMultipleTest.php index 87500db8..af379829 100644 --- a/tests/Predis/Command/HashGetMultipleTest.php +++ b/tests/Predis/Command/HashGetMultipleTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashGetTest.php b/tests/Predis/Command/HashGetTest.php index 06c9dcd6..ab56b372 100644 --- a/tests/Predis/Command/HashGetTest.php +++ b/tests/Predis/Command/HashGetTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashIncrementByFloatTest.php b/tests/Predis/Command/HashIncrementByFloatTest.php index 47c017d7..b68fdf7e 100644 --- a/tests/Predis/Command/HashIncrementByFloatTest.php +++ b/tests/Predis/Command/HashIncrementByFloatTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashIncrementByTest.php b/tests/Predis/Command/HashIncrementByTest.php index 6a54ba96..1feabb00 100644 --- a/tests/Predis/Command/HashIncrementByTest.php +++ b/tests/Predis/Command/HashIncrementByTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashKeysTest.php b/tests/Predis/Command/HashKeysTest.php index a8fef419..ad7cd887 100644 --- a/tests/Predis/Command/HashKeysTest.php +++ b/tests/Predis/Command/HashKeysTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashLengthTest.php b/tests/Predis/Command/HashLengthTest.php index 4b78b739..6a976746 100644 --- a/tests/Predis/Command/HashLengthTest.php +++ b/tests/Predis/Command/HashLengthTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashScanTest.php b/tests/Predis/Command/HashScanTest.php index 1ddefd62..f568bdfd 100644 --- a/tests/Predis/Command/HashScanTest.php +++ b/tests/Predis/Command/HashScanTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashSetMultipleTest.php b/tests/Predis/Command/HashSetMultipleTest.php index fb3f6764..07dba090 100644 --- a/tests/Predis/Command/HashSetMultipleTest.php +++ b/tests/Predis/Command/HashSetMultipleTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashSetPreserveTest.php b/tests/Predis/Command/HashSetPreserveTest.php index 014133ea..3eb99aba 100644 --- a/tests/Predis/Command/HashSetPreserveTest.php +++ b/tests/Predis/Command/HashSetPreserveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashSetTest.php b/tests/Predis/Command/HashSetTest.php index 6c9dbaf8..466a75ee 100644 --- a/tests/Predis/Command/HashSetTest.php +++ b/tests/Predis/Command/HashSetTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/HashValuesTest.php b/tests/Predis/Command/HashValuesTest.php index 0169441c..6e747482 100644 --- a/tests/Predis/Command/HashValuesTest.php +++ b/tests/Predis/Command/HashValuesTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyDeleteTest.php b/tests/Predis/Command/KeyDeleteTest.php index f6e9154c..fd425012 100644 --- a/tests/Predis/Command/KeyDeleteTest.php +++ b/tests/Predis/Command/KeyDeleteTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyDumpTest.php b/tests/Predis/Command/KeyDumpTest.php index 621ffff7..392f08c9 100644 --- a/tests/Predis/Command/KeyDumpTest.php +++ b/tests/Predis/Command/KeyDumpTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyExistsTest.php b/tests/Predis/Command/KeyExistsTest.php index 581dc25b..0ab20142 100644 --- a/tests/Predis/Command/KeyExistsTest.php +++ b/tests/Predis/Command/KeyExistsTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyExpireAtTest.php b/tests/Predis/Command/KeyExpireAtTest.php index dbe69830..f1376051 100644 --- a/tests/Predis/Command/KeyExpireAtTest.php +++ b/tests/Predis/Command/KeyExpireAtTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyExpireTest.php b/tests/Predis/Command/KeyExpireTest.php index 7af43532..9961dafe 100644 --- a/tests/Predis/Command/KeyExpireTest.php +++ b/tests/Predis/Command/KeyExpireTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyKeysTest.php b/tests/Predis/Command/KeyKeysTest.php index 0bed0fef..d8e95a70 100644 --- a/tests/Predis/Command/KeyKeysTest.php +++ b/tests/Predis/Command/KeyKeysTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyKeysV12xTest.php b/tests/Predis/Command/KeyKeysV12xTest.php index 10ebb187..fb936470 100644 --- a/tests/Predis/Command/KeyKeysV12xTest.php +++ b/tests/Predis/Command/KeyKeysV12xTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * We only perform disconnected tests for this commands because diff --git a/tests/Predis/Command/KeyMoveTest.php b/tests/Predis/Command/KeyMoveTest.php index ceabf710..8cdd7d3c 100644 --- a/tests/Predis/Command/KeyMoveTest.php +++ b/tests/Predis/Command/KeyMoveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyPersistTest.php b/tests/Predis/Command/KeyPersistTest.php index 090a8986..5c2ee45b 100644 --- a/tests/Predis/Command/KeyPersistTest.php +++ b/tests/Predis/Command/KeyPersistTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyPreciseExpireAtTest.php b/tests/Predis/Command/KeyPreciseExpireAtTest.php index 356ccaf6..62905692 100644 --- a/tests/Predis/Command/KeyPreciseExpireAtTest.php +++ b/tests/Predis/Command/KeyPreciseExpireAtTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyPreciseExpireTest.php b/tests/Predis/Command/KeyPreciseExpireTest.php index 44dcb36b..bbae4f74 100644 --- a/tests/Predis/Command/KeyPreciseExpireTest.php +++ b/tests/Predis/Command/KeyPreciseExpireTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyPreciseTimeToLiveTest.php b/tests/Predis/Command/KeyPreciseTimeToLiveTest.php index 4b9266da..0c1b3932 100644 --- a/tests/Predis/Command/KeyPreciseTimeToLiveTest.php +++ b/tests/Predis/Command/KeyPreciseTimeToLiveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyRandomTest.php b/tests/Predis/Command/KeyRandomTest.php index ac29b2a1..64cb291b 100644 --- a/tests/Predis/Command/KeyRandomTest.php +++ b/tests/Predis/Command/KeyRandomTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyRenamePreserveTest.php b/tests/Predis/Command/KeyRenamePreserveTest.php index 0128e868..ba13b1df 100644 --- a/tests/Predis/Command/KeyRenamePreserveTest.php +++ b/tests/Predis/Command/KeyRenamePreserveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyRenameTest.php b/tests/Predis/Command/KeyRenameTest.php index 7c772fad..9d2c6fd3 100644 --- a/tests/Predis/Command/KeyRenameTest.php +++ b/tests/Predis/Command/KeyRenameTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyRestoreTest.php b/tests/Predis/Command/KeyRestoreTest.php index 4bd1582e..763395b7 100644 --- a/tests/Predis/Command/KeyRestoreTest.php +++ b/tests/Predis/Command/KeyRestoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyScanTest.php b/tests/Predis/Command/KeyScanTest.php index 63c3cca5..31c4da78 100644 --- a/tests/Predis/Command/KeyScanTest.php +++ b/tests/Predis/Command/KeyScanTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeySortTest.php b/tests/Predis/Command/KeySortTest.php index a078236b..ce3e5188 100644 --- a/tests/Predis/Command/KeySortTest.php +++ b/tests/Predis/Command/KeySortTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyTimeToLiveTest.php b/tests/Predis/Command/KeyTimeToLiveTest.php index 440cf1f3..a47c9579 100644 --- a/tests/Predis/Command/KeyTimeToLiveTest.php +++ b/tests/Predis/Command/KeyTimeToLiveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/KeyTypeTest.php b/tests/Predis/Command/KeyTypeTest.php index 81d32b4e..8173d0ac 100644 --- a/tests/Predis/Command/KeyTypeTest.php +++ b/tests/Predis/Command/KeyTypeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListIndexTest.php b/tests/Predis/Command/ListIndexTest.php index d9f132a2..5d7d9f4e 100644 --- a/tests/Predis/Command/ListIndexTest.php +++ b/tests/Predis/Command/ListIndexTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListInsertTest.php b/tests/Predis/Command/ListInsertTest.php index d892d294..040e6fe2 100644 --- a/tests/Predis/Command/ListInsertTest.php +++ b/tests/Predis/Command/ListInsertTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListLengthTest.php b/tests/Predis/Command/ListLengthTest.php index 88d6f3ea..01b5aa03 100644 --- a/tests/Predis/Command/ListLengthTest.php +++ b/tests/Predis/Command/ListLengthTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPopFirstBlockingTest.php b/tests/Predis/Command/ListPopFirstBlockingTest.php index 080f82e7..fc139971 100644 --- a/tests/Predis/Command/ListPopFirstBlockingTest.php +++ b/tests/Predis/Command/ListPopFirstBlockingTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPopFirstTest.php b/tests/Predis/Command/ListPopFirstTest.php index 1feaf176..69462154 100644 --- a/tests/Predis/Command/ListPopFirstTest.php +++ b/tests/Predis/Command/ListPopFirstTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPopLastBlockingTest.php b/tests/Predis/Command/ListPopLastBlockingTest.php index 63b3316b..8b8842c0 100644 --- a/tests/Predis/Command/ListPopLastBlockingTest.php +++ b/tests/Predis/Command/ListPopLastBlockingTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPopLastPushHeadBlockingTest.php b/tests/Predis/Command/ListPopLastPushHeadBlockingTest.php index ce2f5b7e..dfa00295 100644 --- a/tests/Predis/Command/ListPopLastPushHeadBlockingTest.php +++ b/tests/Predis/Command/ListPopLastPushHeadBlockingTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPopLastPushHeadTest.php b/tests/Predis/Command/ListPopLastPushHeadTest.php index 201bd738..3d08bf85 100644 --- a/tests/Predis/Command/ListPopLastPushHeadTest.php +++ b/tests/Predis/Command/ListPopLastPushHeadTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPopLastTest.php b/tests/Predis/Command/ListPopLastTest.php index 07cafcc9..c38f32e9 100644 --- a/tests/Predis/Command/ListPopLastTest.php +++ b/tests/Predis/Command/ListPopLastTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPushHeadTest.php b/tests/Predis/Command/ListPushHeadTest.php index 13cd4cd8..8674dc34 100644 --- a/tests/Predis/Command/ListPushHeadTest.php +++ b/tests/Predis/Command/ListPushHeadTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPushHeadXTest.php b/tests/Predis/Command/ListPushHeadXTest.php index 8b3e807f..63929926 100644 --- a/tests/Predis/Command/ListPushHeadXTest.php +++ b/tests/Predis/Command/ListPushHeadXTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPushTailTest.php b/tests/Predis/Command/ListPushTailTest.php index 5f5b99c7..3c7f950b 100644 --- a/tests/Predis/Command/ListPushTailTest.php +++ b/tests/Predis/Command/ListPushTailTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListPushTailXTest.php b/tests/Predis/Command/ListPushTailXTest.php index 5816ac52..d5fc678d 100644 --- a/tests/Predis/Command/ListPushTailXTest.php +++ b/tests/Predis/Command/ListPushTailXTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListRangeTest.php b/tests/Predis/Command/ListRangeTest.php index fe233a0f..7aa9426f 100644 --- a/tests/Predis/Command/ListRangeTest.php +++ b/tests/Predis/Command/ListRangeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListRemoveTest.php b/tests/Predis/Command/ListRemoveTest.php index dcbf0293..9b2a45a2 100644 --- a/tests/Predis/Command/ListRemoveTest.php +++ b/tests/Predis/Command/ListRemoveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListSetTest.php b/tests/Predis/Command/ListSetTest.php index 83fbf5fe..1d127349 100644 --- a/tests/Predis/Command/ListSetTest.php +++ b/tests/Predis/Command/ListSetTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ListTrimTest.php b/tests/Predis/Command/ListTrimTest.php index b65013a9..80841ed5 100644 --- a/tests/Predis/Command/ListTrimTest.php +++ b/tests/Predis/Command/ListTrimTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/PrefixHelpersTest.php b/tests/Predis/Command/PrefixHelpersTest.php index bb81c494..5d7be8d5 100644 --- a/tests/Predis/Command/PrefixHelpersTest.php +++ b/tests/Predis/Command/PrefixHelpersTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Command/PrefixableCommandTest.php b/tests/Predis/Command/PrefixableCommandTest.php index 8523e285..ee43f05e 100644 --- a/tests/Predis/Command/PrefixableCommandTest.php +++ b/tests/Predis/Command/PrefixableCommandTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Command/Processor/KeyPrefixProcessorTest.php b/tests/Predis/Command/Processor/KeyPrefixProcessorTest.php index 16f31946..324ca86d 100644 --- a/tests/Predis/Command/Processor/KeyPrefixProcessorTest.php +++ b/tests/Predis/Command/Processor/KeyPrefixProcessorTest.php @@ -11,7 +11,7 @@ namespace Predis\Command\Processor; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Command/Processor/ProcessorChainTest.php b/tests/Predis/Command/Processor/ProcessorChainTest.php index 8c793e2c..2000dd68 100644 --- a/tests/Predis/Command/Processor/ProcessorChainTest.php +++ b/tests/Predis/Command/Processor/ProcessorChainTest.php @@ -11,7 +11,7 @@ namespace Predis\Command\Processor; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Command/PubSubPublishTest.php b/tests/Predis/Command/PubSubPublishTest.php index 69d3f595..45b08028 100644 --- a/tests/Predis/Command/PubSubPublishTest.php +++ b/tests/Predis/Command/PubSubPublishTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/PubSubSubscribeByPatternTest.php b/tests/Predis/Command/PubSubSubscribeByPatternTest.php index 1b84dfed..93cc9839 100644 --- a/tests/Predis/Command/PubSubSubscribeByPatternTest.php +++ b/tests/Predis/Command/PubSubSubscribeByPatternTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/PubSubSubscribeTest.php b/tests/Predis/Command/PubSubSubscribeTest.php index 76b961f5..dbe560b8 100644 --- a/tests/Predis/Command/PubSubSubscribeTest.php +++ b/tests/Predis/Command/PubSubSubscribeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/PubSubUnsubscribeByPatternTest.php b/tests/Predis/Command/PubSubUnsubscribeByPatternTest.php index 4a1be3a7..921147de 100644 --- a/tests/Predis/Command/PubSubUnsubscribeByPatternTest.php +++ b/tests/Predis/Command/PubSubUnsubscribeByPatternTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/PubSubUnsubscribeTest.php b/tests/Predis/Command/PubSubUnsubscribeTest.php index b2fd6415..0e502d35 100644 --- a/tests/Predis/Command/PubSubUnsubscribeTest.php +++ b/tests/Predis/Command/PubSubUnsubscribeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ScriptedCommandTest.php b/tests/Predis/Command/ScriptedCommandTest.php index 95c31447..7df543ad 100644 --- a/tests/Predis/Command/ScriptedCommandTest.php +++ b/tests/Predis/Command/ScriptedCommandTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group realm-scripting diff --git a/tests/Predis/Command/ServerBackgroundRewriteAOFTest.php b/tests/Predis/Command/ServerBackgroundRewriteAOFTest.php index 4fee52f8..84d6cb03 100644 --- a/tests/Predis/Command/ServerBackgroundRewriteAOFTest.php +++ b/tests/Predis/Command/ServerBackgroundRewriteAOFTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerBackgroundSaveTest.php b/tests/Predis/Command/ServerBackgroundSaveTest.php index 0bf7be01..c79148a1 100644 --- a/tests/Predis/Command/ServerBackgroundSaveTest.php +++ b/tests/Predis/Command/ServerBackgroundSaveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerClientTest.php b/tests/Predis/Command/ServerClientTest.php index 86b7a0c3..214bfca4 100644 --- a/tests/Predis/Command/ServerClientTest.php +++ b/tests/Predis/Command/ServerClientTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerConfigTest.php b/tests/Predis/Command/ServerConfigTest.php index 00ec631d..45422e1c 100644 --- a/tests/Predis/Command/ServerConfigTest.php +++ b/tests/Predis/Command/ServerConfigTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerDatabaseSizeTest.php b/tests/Predis/Command/ServerDatabaseSizeTest.php index fb889f74..d280a2e0 100644 --- a/tests/Predis/Command/ServerDatabaseSizeTest.php +++ b/tests/Predis/Command/ServerDatabaseSizeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerEvalSHATest.php b/tests/Predis/Command/ServerEvalSHATest.php index 3ddf7eef..401a8679 100644 --- a/tests/Predis/Command/ServerEvalSHATest.php +++ b/tests/Predis/Command/ServerEvalSHATest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerEvalTest.php b/tests/Predis/Command/ServerEvalTest.php index d1393df2..717b1064 100644 --- a/tests/Predis/Command/ServerEvalTest.php +++ b/tests/Predis/Command/ServerEvalTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerFlushAllTest.php b/tests/Predis/Command/ServerFlushAllTest.php index 090d33f9..797c1530 100644 --- a/tests/Predis/Command/ServerFlushAllTest.php +++ b/tests/Predis/Command/ServerFlushAllTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerFlushDatabaseTest.php b/tests/Predis/Command/ServerFlushDatabaseTest.php index 39ae5738..8cf95d00 100644 --- a/tests/Predis/Command/ServerFlushDatabaseTest.php +++ b/tests/Predis/Command/ServerFlushDatabaseTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerInfoTest.php b/tests/Predis/Command/ServerInfoTest.php index 2b9b2038..1afd1622 100644 --- a/tests/Predis/Command/ServerInfoTest.php +++ b/tests/Predis/Command/ServerInfoTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerInfoV26xTest.php b/tests/Predis/Command/ServerInfoV26xTest.php index 76f75c76..edeb56a5 100644 --- a/tests/Predis/Command/ServerInfoV26xTest.php +++ b/tests/Predis/Command/ServerInfoV26xTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerLastSaveTest.php b/tests/Predis/Command/ServerLastSaveTest.php index 15bedf05..2fddf4fa 100644 --- a/tests/Predis/Command/ServerLastSaveTest.php +++ b/tests/Predis/Command/ServerLastSaveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerMonitorTest.php b/tests/Predis/Command/ServerMonitorTest.php index cab231c9..73216734 100644 --- a/tests/Predis/Command/ServerMonitorTest.php +++ b/tests/Predis/Command/ServerMonitorTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerObjectTest.php b/tests/Predis/Command/ServerObjectTest.php index c9a55a4e..6b9ac78b 100644 --- a/tests/Predis/Command/ServerObjectTest.php +++ b/tests/Predis/Command/ServerObjectTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerSaveTest.php b/tests/Predis/Command/ServerSaveTest.php index 0be9647c..91d2829b 100644 --- a/tests/Predis/Command/ServerSaveTest.php +++ b/tests/Predis/Command/ServerSaveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerScriptTest.php b/tests/Predis/Command/ServerScriptTest.php index 6eb16e8e..6fe76bcd 100644 --- a/tests/Predis/Command/ServerScriptTest.php +++ b/tests/Predis/Command/ServerScriptTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerShutdownTest.php b/tests/Predis/Command/ServerShutdownTest.php index 13f4fcf0..a3ff0695 100644 --- a/tests/Predis/Command/ServerShutdownTest.php +++ b/tests/Predis/Command/ServerShutdownTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerSlaveOfTest.php b/tests/Predis/Command/ServerSlaveOfTest.php index e65d1b76..21aee3d8 100644 --- a/tests/Predis/Command/ServerSlaveOfTest.php +++ b/tests/Predis/Command/ServerSlaveOfTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ServerSlowlogTest.php b/tests/Predis/Command/ServerSlowlogTest.php index 4beabb6b..c4eb3580 100644 --- a/tests/Predis/Command/ServerSlowlogTest.php +++ b/tests/Predis/Command/ServerSlowlogTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * In order to support the output of SLOWLOG, the backend connection diff --git a/tests/Predis/Command/ServerTimeTest.php b/tests/Predis/Command/ServerTimeTest.php index 19e313d6..63b39fb2 100644 --- a/tests/Predis/Command/ServerTimeTest.php +++ b/tests/Predis/Command/ServerTimeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetAddTest.php b/tests/Predis/Command/SetAddTest.php index 53076ff2..5746771f 100644 --- a/tests/Predis/Command/SetAddTest.php +++ b/tests/Predis/Command/SetAddTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetCardinalityTest.php b/tests/Predis/Command/SetCardinalityTest.php index 6bc90ec7..e135431d 100644 --- a/tests/Predis/Command/SetCardinalityTest.php +++ b/tests/Predis/Command/SetCardinalityTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetDifferenceStoreTest.php b/tests/Predis/Command/SetDifferenceStoreTest.php index 27b00325..0c106bb3 100644 --- a/tests/Predis/Command/SetDifferenceStoreTest.php +++ b/tests/Predis/Command/SetDifferenceStoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetDifferenceTest.php b/tests/Predis/Command/SetDifferenceTest.php index 9fced2c3..5e020b78 100644 --- a/tests/Predis/Command/SetDifferenceTest.php +++ b/tests/Predis/Command/SetDifferenceTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetIntersectionStoreTest.php b/tests/Predis/Command/SetIntersectionStoreTest.php index 493914c5..d0f78b2d 100644 --- a/tests/Predis/Command/SetIntersectionStoreTest.php +++ b/tests/Predis/Command/SetIntersectionStoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetIntersectionTest.php b/tests/Predis/Command/SetIntersectionTest.php index 9ead2132..32d3a697 100644 --- a/tests/Predis/Command/SetIntersectionTest.php +++ b/tests/Predis/Command/SetIntersectionTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetIsMemberTest.php b/tests/Predis/Command/SetIsMemberTest.php index d92fe0d4..cf3b3f91 100644 --- a/tests/Predis/Command/SetIsMemberTest.php +++ b/tests/Predis/Command/SetIsMemberTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetMembersTest.php b/tests/Predis/Command/SetMembersTest.php index 04ac3b3b..8c4a92ca 100644 --- a/tests/Predis/Command/SetMembersTest.php +++ b/tests/Predis/Command/SetMembersTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetMoveTest.php b/tests/Predis/Command/SetMoveTest.php index 4b119555..72b1348c 100644 --- a/tests/Predis/Command/SetMoveTest.php +++ b/tests/Predis/Command/SetMoveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetPopTest.php b/tests/Predis/Command/SetPopTest.php index d3b0f046..e69e4157 100644 --- a/tests/Predis/Command/SetPopTest.php +++ b/tests/Predis/Command/SetPopTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetRandomMemberTest.php b/tests/Predis/Command/SetRandomMemberTest.php index 69227abe..1919c735 100644 --- a/tests/Predis/Command/SetRandomMemberTest.php +++ b/tests/Predis/Command/SetRandomMemberTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetRemoveTest.php b/tests/Predis/Command/SetRemoveTest.php index 21570a92..a6b63ffb 100644 --- a/tests/Predis/Command/SetRemoveTest.php +++ b/tests/Predis/Command/SetRemoveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetScanTest.php b/tests/Predis/Command/SetScanTest.php index 6ef6eda7..b44e3a0d 100644 --- a/tests/Predis/Command/SetScanTest.php +++ b/tests/Predis/Command/SetScanTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetUnionStoreTest.php b/tests/Predis/Command/SetUnionStoreTest.php index 4428cede..fadc0a2f 100644 --- a/tests/Predis/Command/SetUnionStoreTest.php +++ b/tests/Predis/Command/SetUnionStoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/SetUnionTest.php b/tests/Predis/Command/SetUnionTest.php index 93394528..bd704f7d 100644 --- a/tests/Predis/Command/SetUnionTest.php +++ b/tests/Predis/Command/SetUnionTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringAppendTest.php b/tests/Predis/Command/StringAppendTest.php index 3956f867..7f264f02 100644 --- a/tests/Predis/Command/StringAppendTest.php +++ b/tests/Predis/Command/StringAppendTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringBitCountTest.php b/tests/Predis/Command/StringBitCountTest.php index b04d06b9..8ccdbbcf 100644 --- a/tests/Predis/Command/StringBitCountTest.php +++ b/tests/Predis/Command/StringBitCountTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringBitOpTest.php b/tests/Predis/Command/StringBitOpTest.php index e3fd5eb7..8915b420 100644 --- a/tests/Predis/Command/StringBitOpTest.php +++ b/tests/Predis/Command/StringBitOpTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringDecrementByTest.php b/tests/Predis/Command/StringDecrementByTest.php index af8e73b5..9b921dd5 100644 --- a/tests/Predis/Command/StringDecrementByTest.php +++ b/tests/Predis/Command/StringDecrementByTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringDecrementTest.php b/tests/Predis/Command/StringDecrementTest.php index 50711a16..54c6d846 100644 --- a/tests/Predis/Command/StringDecrementTest.php +++ b/tests/Predis/Command/StringDecrementTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringGetBitTest.php b/tests/Predis/Command/StringGetBitTest.php index a6b701d1..d9cf7459 100644 --- a/tests/Predis/Command/StringGetBitTest.php +++ b/tests/Predis/Command/StringGetBitTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringGetMultipleTest.php b/tests/Predis/Command/StringGetMultipleTest.php index f1d7a887..11436db3 100644 --- a/tests/Predis/Command/StringGetMultipleTest.php +++ b/tests/Predis/Command/StringGetMultipleTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringGetRangeTest.php b/tests/Predis/Command/StringGetRangeTest.php index f7e5d98c..4c826065 100644 --- a/tests/Predis/Command/StringGetRangeTest.php +++ b/tests/Predis/Command/StringGetRangeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringGetSetTest.php b/tests/Predis/Command/StringGetSetTest.php index d99d77e7..a6228409 100644 --- a/tests/Predis/Command/StringGetSetTest.php +++ b/tests/Predis/Command/StringGetSetTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringGetTest.php b/tests/Predis/Command/StringGetTest.php index 6da814f6..b626c6d4 100644 --- a/tests/Predis/Command/StringGetTest.php +++ b/tests/Predis/Command/StringGetTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringIncrementByFloatTest.php b/tests/Predis/Command/StringIncrementByFloatTest.php index dab01fbf..041d798f 100644 --- a/tests/Predis/Command/StringIncrementByFloatTest.php +++ b/tests/Predis/Command/StringIncrementByFloatTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringIncrementByTest.php b/tests/Predis/Command/StringIncrementByTest.php index 15305970..5fec96c6 100644 --- a/tests/Predis/Command/StringIncrementByTest.php +++ b/tests/Predis/Command/StringIncrementByTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringIncrementTest.php b/tests/Predis/Command/StringIncrementTest.php index 8435c81e..386219b3 100644 --- a/tests/Predis/Command/StringIncrementTest.php +++ b/tests/Predis/Command/StringIncrementTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringPreciseSetExpireTest.php b/tests/Predis/Command/StringPreciseSetExpireTest.php index 5e2f4ffa..a92655b9 100644 --- a/tests/Predis/Command/StringPreciseSetExpireTest.php +++ b/tests/Predis/Command/StringPreciseSetExpireTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringSetBitTest.php b/tests/Predis/Command/StringSetBitTest.php index 1b942b52..3089999d 100644 --- a/tests/Predis/Command/StringSetBitTest.php +++ b/tests/Predis/Command/StringSetBitTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringSetExpireTest.php b/tests/Predis/Command/StringSetExpireTest.php index 587bf392..4a86e72d 100644 --- a/tests/Predis/Command/StringSetExpireTest.php +++ b/tests/Predis/Command/StringSetExpireTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringSetMultiplePreserveTest.php b/tests/Predis/Command/StringSetMultiplePreserveTest.php index d2833e35..827f57e2 100644 --- a/tests/Predis/Command/StringSetMultiplePreserveTest.php +++ b/tests/Predis/Command/StringSetMultiplePreserveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringSetMultipleTest.php b/tests/Predis/Command/StringSetMultipleTest.php index f351aa41..9d1ea3ea 100644 --- a/tests/Predis/Command/StringSetMultipleTest.php +++ b/tests/Predis/Command/StringSetMultipleTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringSetRangeTest.php b/tests/Predis/Command/StringSetRangeTest.php index 8a2d21ef..4d6d22d5 100644 --- a/tests/Predis/Command/StringSetRangeTest.php +++ b/tests/Predis/Command/StringSetRangeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringSetTest.php b/tests/Predis/Command/StringSetTest.php index 004ae0fe..80c1dc63 100644 --- a/tests/Predis/Command/StringSetTest.php +++ b/tests/Predis/Command/StringSetTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringStrlenTest.php b/tests/Predis/Command/StringStrlenTest.php index 593edfe2..ed7ed2ae 100644 --- a/tests/Predis/Command/StringStrlenTest.php +++ b/tests/Predis/Command/StringStrlenTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/StringSubstrTest.php b/tests/Predis/Command/StringSubstrTest.php index 2a7a204a..cdd0106b 100644 --- a/tests/Predis/Command/StringSubstrTest.php +++ b/tests/Predis/Command/StringSubstrTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * SUBSTR is actually the old name of GETRANGE in version of Redis <= 2.0. diff --git a/tests/Predis/Command/TransactionDiscardTest.php b/tests/Predis/Command/TransactionDiscardTest.php index 9d3d0794..e0dd9fc0 100644 --- a/tests/Predis/Command/TransactionDiscardTest.php +++ b/tests/Predis/Command/TransactionDiscardTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/TransactionExecTest.php b/tests/Predis/Command/TransactionExecTest.php index 2c604355..12858147 100644 --- a/tests/Predis/Command/TransactionExecTest.php +++ b/tests/Predis/Command/TransactionExecTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/TransactionMultiTest.php b/tests/Predis/Command/TransactionMultiTest.php index d3350a04..3aef9f52 100644 --- a/tests/Predis/Command/TransactionMultiTest.php +++ b/tests/Predis/Command/TransactionMultiTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/TransactionUnwatchTest.php b/tests/Predis/Command/TransactionUnwatchTest.php index fc9cf7af..78348793 100644 --- a/tests/Predis/Command/TransactionUnwatchTest.php +++ b/tests/Predis/Command/TransactionUnwatchTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/TransactionWatchTest.php b/tests/Predis/Command/TransactionWatchTest.php index 7f71f91c..ec4f965d 100644 --- a/tests/Predis/Command/TransactionWatchTest.php +++ b/tests/Predis/Command/TransactionWatchTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetAddTest.php b/tests/Predis/Command/ZSetAddTest.php index c0d2216d..4cbac71e 100644 --- a/tests/Predis/Command/ZSetAddTest.php +++ b/tests/Predis/Command/ZSetAddTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetCardinalityTest.php b/tests/Predis/Command/ZSetCardinalityTest.php index 95cb67c2..8ae66487 100644 --- a/tests/Predis/Command/ZSetCardinalityTest.php +++ b/tests/Predis/Command/ZSetCardinalityTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetCountTest.php b/tests/Predis/Command/ZSetCountTest.php index 0c7d7f6f..fc25cfd5 100644 --- a/tests/Predis/Command/ZSetCountTest.php +++ b/tests/Predis/Command/ZSetCountTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetIncrementByTest.php b/tests/Predis/Command/ZSetIncrementByTest.php index 593fc478..80a310f8 100644 --- a/tests/Predis/Command/ZSetIncrementByTest.php +++ b/tests/Predis/Command/ZSetIncrementByTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetIntersectionStoreTest.php b/tests/Predis/Command/ZSetIntersectionStoreTest.php index 99b865bf..de8da8ff 100644 --- a/tests/Predis/Command/ZSetIntersectionStoreTest.php +++ b/tests/Predis/Command/ZSetIntersectionStoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetRangeByScoreTest.php b/tests/Predis/Command/ZSetRangeByScoreTest.php index 7086eec0..82caed4a 100644 --- a/tests/Predis/Command/ZSetRangeByScoreTest.php +++ b/tests/Predis/Command/ZSetRangeByScoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetRangeTest.php b/tests/Predis/Command/ZSetRangeTest.php index a3f6fedb..7b629f8a 100644 --- a/tests/Predis/Command/ZSetRangeTest.php +++ b/tests/Predis/Command/ZSetRangeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetRankTest.php b/tests/Predis/Command/ZSetRankTest.php index d2333327..853a81f1 100644 --- a/tests/Predis/Command/ZSetRankTest.php +++ b/tests/Predis/Command/ZSetRankTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetRemoveRangeByRankTest.php b/tests/Predis/Command/ZSetRemoveRangeByRankTest.php index c291f43a..5ebb2b4e 100644 --- a/tests/Predis/Command/ZSetRemoveRangeByRankTest.php +++ b/tests/Predis/Command/ZSetRemoveRangeByRankTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetRemoveRangeByScoreTest.php b/tests/Predis/Command/ZSetRemoveRangeByScoreTest.php index a27cdbe8..834f7d02 100644 --- a/tests/Predis/Command/ZSetRemoveRangeByScoreTest.php +++ b/tests/Predis/Command/ZSetRemoveRangeByScoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetRemoveTest.php b/tests/Predis/Command/ZSetRemoveTest.php index 17fca3ff..16ab9a5d 100644 --- a/tests/Predis/Command/ZSetRemoveTest.php +++ b/tests/Predis/Command/ZSetRemoveTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetReverseRangeByScoreTest.php b/tests/Predis/Command/ZSetReverseRangeByScoreTest.php index 112e99ec..49367bd0 100644 --- a/tests/Predis/Command/ZSetReverseRangeByScoreTest.php +++ b/tests/Predis/Command/ZSetReverseRangeByScoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetReverseRangeTest.php b/tests/Predis/Command/ZSetReverseRangeTest.php index 3c1f5ab0..48dc5593 100644 --- a/tests/Predis/Command/ZSetReverseRangeTest.php +++ b/tests/Predis/Command/ZSetReverseRangeTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetReverseRankTest.php b/tests/Predis/Command/ZSetReverseRankTest.php index 0d429063..d80b543e 100644 --- a/tests/Predis/Command/ZSetReverseRankTest.php +++ b/tests/Predis/Command/ZSetReverseRankTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetScanTest.php b/tests/Predis/Command/ZSetScanTest.php index 918afe14..92b4e96a 100644 --- a/tests/Predis/Command/ZSetScanTest.php +++ b/tests/Predis/Command/ZSetScanTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetScoreTest.php b/tests/Predis/Command/ZSetScoreTest.php index cd484104..e80af3a4 100644 --- a/tests/Predis/Command/ZSetScoreTest.php +++ b/tests/Predis/Command/ZSetScoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/Command/ZSetUnionStoreTest.php b/tests/Predis/Command/ZSetUnionStoreTest.php index 6e46994d..56aaef7e 100644 --- a/tests/Predis/Command/ZSetUnionStoreTest.php +++ b/tests/Predis/Command/ZSetUnionStoreTest.php @@ -11,7 +11,7 @@ namespace Predis\Command; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @group commands diff --git a/tests/Predis/CommunicationExceptionTest.php b/tests/Predis/CommunicationExceptionTest.php index b4c2ccde..f766815d 100644 --- a/tests/Predis/CommunicationExceptionTest.php +++ b/tests/Predis/CommunicationExceptionTest.php @@ -11,7 +11,7 @@ namespace Predis; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Connection\SingleConnectionInterface; diff --git a/tests/Predis/Connection/ComposableStreamConnectionTest.php b/tests/Predis/Connection/ComposableStreamConnectionTest.php index 25967aa9..8ca95fa6 100644 --- a/tests/Predis/Connection/ComposableStreamConnectionTest.php +++ b/tests/Predis/Connection/ComposableStreamConnectionTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Connection/ConnectionFactoryTest.php b/tests/Predis/Connection/ConnectionFactoryTest.php index ca37bbe6..e975bb03 100644 --- a/tests/Predis/Connection/ConnectionFactoryTest.php +++ b/tests/Predis/Connection/ConnectionFactoryTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Connection/ConnectionParametersTest.php b/tests/Predis/Connection/ConnectionParametersTest.php index 808c0854..d0b9d43e 100644 --- a/tests/Predis/Connection/ConnectionParametersTest.php +++ b/tests/Predis/Connection/ConnectionParametersTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * @todo ConnectionParameters::define(); diff --git a/tests/Predis/Connection/MasterSlaveReplicationTest.php b/tests/Predis/Connection/MasterSlaveReplicationTest.php index 5acf0d77..302e9891 100644 --- a/tests/Predis/Connection/MasterSlaveReplicationTest.php +++ b/tests/Predis/Connection/MasterSlaveReplicationTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; use Predis\Replication\ReplicationStrategy; diff --git a/tests/Predis/Connection/PhpiredisConnectionTest.php b/tests/Predis/Connection/PhpiredisConnectionTest.php index 2ab89099..8f388dcb 100644 --- a/tests/Predis/Connection/PhpiredisConnectionTest.php +++ b/tests/Predis/Connection/PhpiredisConnectionTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Connection/PhpiredisStreamConnectionTest.php b/tests/Predis/Connection/PhpiredisStreamConnectionTest.php index cd86374e..f12a5df7 100644 --- a/tests/Predis/Connection/PhpiredisStreamConnectionTest.php +++ b/tests/Predis/Connection/PhpiredisStreamConnectionTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Connection/PredisClusterTest.php b/tests/Predis/Connection/PredisClusterTest.php index 01d24dcb..f88eaedb 100644 --- a/tests/Predis/Connection/PredisClusterTest.php +++ b/tests/Predis/Connection/PredisClusterTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Connection/RedisClusterTest.php b/tests/Predis/Connection/RedisClusterTest.php index d97f3c6b..c0e72fdc 100644 --- a/tests/Predis/Connection/RedisClusterTest.php +++ b/tests/Predis/Connection/RedisClusterTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; use Predis\Response; diff --git a/tests/Predis/Connection/StreamConnectionTest.php b/tests/Predis/Connection/StreamConnectionTest.php index 8276cbeb..9c7bf2eb 100644 --- a/tests/Predis/Connection/StreamConnectionTest.php +++ b/tests/Predis/Connection/StreamConnectionTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Connection/WebdisConnectionTest.php b/tests/Predis/Connection/WebdisConnectionTest.php index 758fd027..4eccf563 100644 --- a/tests/Predis/Connection/WebdisConnectionTest.php +++ b/tests/Predis/Connection/WebdisConnectionTest.php @@ -11,7 +11,7 @@ namespace Predis\Connection; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Monitor/MonitorContextTest.php b/tests/Predis/Monitor/MonitorContextTest.php index 24145842..52a555fe 100644 --- a/tests/Predis/Monitor/MonitorContextTest.php +++ b/tests/Predis/Monitor/MonitorContextTest.php @@ -11,7 +11,7 @@ namespace Predis\Monitor; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Pipeline/FireAndForgetExecutorTest.php b/tests/Predis/Pipeline/FireAndForgetExecutorTest.php index e44204dc..70f3bbf5 100644 --- a/tests/Predis/Pipeline/FireAndForgetExecutorTest.php +++ b/tests/Predis/Pipeline/FireAndForgetExecutorTest.php @@ -11,7 +11,7 @@ namespace Predis\Pipeline; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use SplQueue; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Pipeline/MultiExecExecutorTest.php b/tests/Predis/Pipeline/MultiExecExecutorTest.php index aa8d7af6..b6ccc86a 100644 --- a/tests/Predis/Pipeline/MultiExecExecutorTest.php +++ b/tests/Predis/Pipeline/MultiExecExecutorTest.php @@ -11,7 +11,7 @@ namespace Predis\Pipeline; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use SplQueue; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Pipeline/PipelineContextTest.php b/tests/Predis/Pipeline/PipelineContextTest.php index 350096d0..1b475aa9 100644 --- a/tests/Predis/Pipeline/PipelineContextTest.php +++ b/tests/Predis/Pipeline/PipelineContextTest.php @@ -11,7 +11,7 @@ namespace Predis\Pipeline; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\ClientException; diff --git a/tests/Predis/Pipeline/StandardExecutorTest.php b/tests/Predis/Pipeline/StandardExecutorTest.php index b4919374..1c0594a2 100644 --- a/tests/Predis/Pipeline/StandardExecutorTest.php +++ b/tests/Predis/Pipeline/StandardExecutorTest.php @@ -11,7 +11,7 @@ namespace Predis\Pipeline; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use SplQueue; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/PredisExceptionTest.php b/tests/Predis/PredisExceptionTest.php index 4cfbc656..449e6c62 100644 --- a/tests/Predis/PredisExceptionTest.php +++ b/tests/Predis/PredisExceptionTest.php @@ -11,7 +11,7 @@ namespace Predis; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Profile/ServerProfileTest.php b/tests/Predis/Profile/ServerProfileTest.php index 893b387b..8485add7 100644 --- a/tests/Predis/Profile/ServerProfileTest.php +++ b/tests/Predis/Profile/ServerProfileTest.php @@ -11,7 +11,7 @@ namespace Predis\Profile; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Command\Processor\ProcessorChain; diff --git a/tests/Predis/Protocol/Text/ComposableProtocolProcessorTest.php b/tests/Predis/Protocol/Text/ComposableProtocolProcessorTest.php index a545fff0..e389348b 100644 --- a/tests/Predis/Protocol/Text/ComposableProtocolProcessorTest.php +++ b/tests/Predis/Protocol/Text/ComposableProtocolProcessorTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/Handler/BulkResponseTest.php b/tests/Predis/Protocol/Text/Handler/BulkResponseTest.php index 988dc491..c9de4e24 100644 --- a/tests/Predis/Protocol/Text/Handler/BulkResponseTest.php +++ b/tests/Predis/Protocol/Text/Handler/BulkResponseTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/Handler/ErrorResponseTest.php b/tests/Predis/Protocol/Text/Handler/ErrorResponseTest.php index dd2cb765..e575a1e7 100644 --- a/tests/Predis/Protocol/Text/Handler/ErrorResponseTest.php +++ b/tests/Predis/Protocol/Text/Handler/ErrorResponseTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/Handler/IntegerResponseTest.php b/tests/Predis/Protocol/Text/Handler/IntegerResponseTest.php index 6c271bb1..6221a5da 100644 --- a/tests/Predis/Protocol/Text/Handler/IntegerResponseTest.php +++ b/tests/Predis/Protocol/Text/Handler/IntegerResponseTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/Handler/MultiBulkResponseTest.php b/tests/Predis/Protocol/Text/Handler/MultiBulkResponseTest.php index 8583d4c6..2d8c1ef6 100644 --- a/tests/Predis/Protocol/Text/Handler/MultiBulkResponseTest.php +++ b/tests/Predis/Protocol/Text/Handler/MultiBulkResponseTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/Handler/StatusResponseTest.php b/tests/Predis/Protocol/Text/Handler/StatusResponseTest.php index 15498a73..c788d07a 100644 --- a/tests/Predis/Protocol/Text/Handler/StatusResponseTest.php +++ b/tests/Predis/Protocol/Text/Handler/StatusResponseTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/Handler/StreamableMultiBulkResponseTest.php b/tests/Predis/Protocol/Text/Handler/StreamableMultiBulkResponseTest.php index 3f36cafb..3e86a72d 100644 --- a/tests/Predis/Protocol/Text/Handler/StreamableMultiBulkResponseTest.php +++ b/tests/Predis/Protocol/Text/Handler/StreamableMultiBulkResponseTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/ProtocolProcessorTest.php b/tests/Predis/Protocol/Text/ProtocolProcessorTest.php index 7881434a..f3f1651e 100644 --- a/tests/Predis/Protocol/Text/ProtocolProcessorTest.php +++ b/tests/Predis/Protocol/Text/ProtocolProcessorTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/RequestSerializerTest.php b/tests/Predis/Protocol/Text/RequestSerializerTest.php index 597be35e..b78eb698 100644 --- a/tests/Predis/Protocol/Text/RequestSerializerTest.php +++ b/tests/Predis/Protocol/Text/RequestSerializerTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Protocol/Text/ResponseReaderTest.php b/tests/Predis/Protocol/Text/ResponseReaderTest.php index fac273b8..a889e243 100644 --- a/tests/Predis/Protocol/Text/ResponseReaderTest.php +++ b/tests/Predis/Protocol/Text/ResponseReaderTest.php @@ -11,7 +11,7 @@ namespace Predis\Protocol\Text; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/PubSub/DispatcherLoopTest.php b/tests/Predis/PubSub/DispatcherLoopTest.php index 5df84758..c039fa1d 100644 --- a/tests/Predis/PubSub/DispatcherLoopTest.php +++ b/tests/Predis/PubSub/DispatcherLoopTest.php @@ -11,7 +11,7 @@ namespace Predis\PubSub; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/PubSub/PubSubContextTest.php b/tests/Predis/PubSub/PubSubContextTest.php index 140e8f25..98847642 100644 --- a/tests/Predis/PubSub/PubSubContextTest.php +++ b/tests/Predis/PubSub/PubSubContextTest.php @@ -11,7 +11,7 @@ namespace Predis\PubSub; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Replication/ReplicationStrategyTest.php b/tests/Predis/Replication/ReplicationStrategyTest.php index d34e29b6..93016c4c 100644 --- a/tests/Predis/Replication/ReplicationStrategyTest.php +++ b/tests/Predis/Replication/ReplicationStrategyTest.php @@ -11,7 +11,7 @@ namespace Predis\Replication; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Command\CommandInterface; use Predis\Profile\ServerProfile; diff --git a/tests/Predis/Response/ErrorTest.php b/tests/Predis/Response/ErrorTest.php index eac7113c..323d405d 100644 --- a/tests/Predis/Response/ErrorTest.php +++ b/tests/Predis/Response/ErrorTest.php @@ -11,7 +11,7 @@ namespace Predis\Response; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Response/Iterator/MultiBulkTest.php b/tests/Predis/Response/Iterator/MultiBulkTest.php index f7986dc7..3b3a99c2 100644 --- a/tests/Predis/Response/Iterator/MultiBulkTest.php +++ b/tests/Predis/Response/Iterator/MultiBulkTest.php @@ -11,7 +11,7 @@ namespace Predis\Response\Iterator; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Connection\ComposableStreamConnection; diff --git a/tests/Predis/Response/Iterator/MultiBulkTupleTest.php b/tests/Predis/Response/Iterator/MultiBulkTupleTest.php index 2b4a62a3..b9815c9d 100644 --- a/tests/Predis/Response/Iterator/MultiBulkTupleTest.php +++ b/tests/Predis/Response/Iterator/MultiBulkTupleTest.php @@ -11,7 +11,7 @@ namespace Predis\Response\Iterator; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Connection\ComposableStreamConnection; diff --git a/tests/Predis/Response/ServerExceptionTest.php b/tests/Predis/Response/ServerExceptionTest.php index 1545f6bc..822d057f 100644 --- a/tests/Predis/Response/ServerExceptionTest.php +++ b/tests/Predis/Response/ServerExceptionTest.php @@ -11,7 +11,7 @@ namespace Predis\Response; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Response/StatusQueuedTest.php b/tests/Predis/Response/StatusQueuedTest.php index 212d9b13..58759aff 100644 --- a/tests/Predis/Response/StatusQueuedTest.php +++ b/tests/Predis/Response/StatusQueuedTest.php @@ -11,7 +11,7 @@ namespace Predis\Response; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; /** * diff --git a/tests/Predis/Transaction/AbortedMultiExecExceptionTest.php b/tests/Predis/Transaction/AbortedMultiExecExceptionTest.php index ad4f06ee..101831b0 100644 --- a/tests/Predis/Transaction/AbortedMultiExecExceptionTest.php +++ b/tests/Predis/Transaction/AbortedMultiExecExceptionTest.php @@ -11,7 +11,7 @@ namespace Predis\Transaction; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; diff --git a/tests/Predis/Transaction/MultiExecContextTest.php b/tests/Predis/Transaction/MultiExecContextTest.php index 7b68358c..5eecc43b 100644 --- a/tests/Predis/Transaction/MultiExecContextTest.php +++ b/tests/Predis/Transaction/MultiExecContextTest.php @@ -11,7 +11,7 @@ namespace Predis\Transaction; -use \PHPUnit_Framework_TestCase as StandardTestCase; +use PHPUnit_Framework_TestCase as StandardTestCase; use Predis\Client; use Predis\Command\CommandInterface;