Skip to content

Commit 20c9ba0

Browse files
keradusfabpot
authored andcommitted
chore: PHP CS Fixer fixes
1 parent b3afc1d commit 20c9ba0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Store/RedisStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
use Predis\Response\Error;
1515
use Predis\Response\ServerException;
16-
use Relay\Relay;
1716
use Relay\Cluster as RelayCluster;
17+
use Relay\Relay;
1818
use Symfony\Component\Lock\Exception\InvalidTtlException;
1919
use Symfony\Component\Lock\Exception\LockConflictedException;
2020
use Symfony\Component\Lock\Exception\LockStorageException;

Tests/Store/AbstractRedisStoreTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Component\Lock\Tests\Store;
1313

14-
use Relay\Relay;
1514
use Relay\Cluster as RelayCluster;
15+
use Relay\Relay;
1616
use Symfony\Component\Lock\Exception\InvalidArgumentException;
1717
use Symfony\Component\Lock\Exception\LockConflictedException;
1818
use Symfony\Component\Lock\Key;

Tests/Store/RelayClusterStoreTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static function setUpBeforeClass(): void
3636
self::markTestSkipped('The Relay\Cluster class is required.');
3737
}
3838

39-
if (getenv('REDIS_CLUSTER_HOSTS') === false) {
39+
if (false === getenv('REDIS_CLUSTER_HOSTS')) {
4040
self::markTestSkipped('REDIS_CLUSTER_HOSTS env var is not defined.');
4141
}
4242
}

0 commit comments

Comments
 (0)