Skip to content

Commit 1726db0

Browse files
authored
Codestyle updates (#1485)
1 parent 8fbd34c commit 1726db0

39 files changed

+42
-41
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
uses: actions/checkout@v3
109109

110110
- name: Run Redis cluster
111-
uses: isbang/compose-action@v1.4.1
111+
uses: hoverkraft-tech/compose-action@v2.0.1
112112
with:
113113
compose-file: .github/workflows/cluster/docker-compose.yml
114114

.php-cs-fixer.dist.php

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
'single_line_throw' => false,
2626
'concat_space' => ['spacing' => 'one'],
2727
'increment_style' => false,
28+
'trailing_comma_in_multiline' => ['after_heredoc' => true, 'elements' => ['array_destructuring', 'arrays']]
2829
])
2930
->setFinder(
3031
PhpCsFixer\Finder::create()

tests/Predis/Command/Redis/AbstractCommand/BZPOPBaseTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected function setUp(): void
2626
{
2727
parent::setUp();
2828

29-
$this->testCommand = new class() extends BZPOPBase {
29+
$this->testCommand = new class extends BZPOPBase {
3030
public function getId(): string
3131
{
3232
return 'test';

tests/Predis/Command/Redis/Search/FTCONFIG_Test.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function testParseResponse(): void
9191
* @group connected
9292
* @group relay-resp3
9393
* @return void
94-
* @requiresRediSearchVersion >= 1.0.0
94+
* @requiresRedisVersion <= 7.3.0
9595
*/
9696
public function testSetGivenRediSearchConfigurationParameter(): void
9797
{
@@ -104,7 +104,7 @@ public function testSetGivenRediSearchConfigurationParameter(): void
104104
* @group connected
105105
* @group relay-resp3
106106
* @return void
107-
* @requiresRediSearchVersion >= 1.0.0
107+
* @requiresRedisVersion <= 7.3.0
108108
*/
109109
public function testGetReturnsGivenRediSearchConfigurationParameter(): void
110110
{
@@ -118,7 +118,7 @@ public function testGetReturnsGivenRediSearchConfigurationParameter(): void
118118
* @group connected
119119
* @group relay-resp3
120120
* @return void
121-
* @requiresRediSearchVersion >= 1.0.0
121+
* @requiresRedisVersion <= 7.3.0
122122
*/
123123
public function testHelpReturnsGivenRediSearchConfigurationDescription(): void
124124
{
@@ -141,7 +141,7 @@ public function testHelpReturnsGivenRediSearchConfigurationDescription(): void
141141
* @group connected
142142
* @group relay-resp3
143143
* @return void
144-
* @requiresRediSearchVersion >= 1.0.0
144+
* @requiresRedisVersion <= 7.3.0
145145
*/
146146
public function testSetThrowsExceptionOnNonExistingOption(): void
147147
{

tests/Predis/Command/Traits/AggregateTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class AggregateTest extends PredisTestCase
2222

2323
protected function setUp(): void
2424
{
25-
$this->testClass = new class() extends RedisCommand {
25+
$this->testClass = new class extends RedisCommand {
2626
use Aggregate;
2727

2828
public static $aggregateArgumentPositionOffset = 0;

tests/Predis/Command/Traits/BitByteTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class BitByteTest extends PredisTestCase
2121

2222
protected function setUp(): void
2323
{
24-
$this->testClass = new class() extends RedisCommand {
24+
$this->testClass = new class extends RedisCommand {
2525
use BitByte;
2626

2727
public function getId()

tests/Predis/Command/Traits/BloomFilters/BucketSizeTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use BucketSize;
2929

3030
public static $bucketSizeArgumentPositionOffset = 0;

tests/Predis/Command/Traits/BloomFilters/CapacityTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Capacity;
2929

3030
public static $capacityArgumentPositionOffset = 0;

tests/Predis/Command/Traits/BloomFilters/ErrorTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Error;
2929

3030
public static $errorArgumentPositionOffset = 0;

tests/Predis/Command/Traits/BloomFilters/ExpansionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ExpansionTest extends PredisTestCase
2222

2323
protected function setUp(): void
2424
{
25-
$this->testClass = new class() extends RedisCommand {
25+
$this->testClass = new class extends RedisCommand {
2626
use Expansion;
2727

2828
public static $expansionArgumentPositionOffset = 0;

tests/Predis/Command/Traits/BloomFilters/ItemsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ protected function setUp(): void
2323
{
2424
parent::setUp();
2525

26-
$this->testClass = new class() extends RedisCommand {
26+
$this->testClass = new class extends RedisCommand {
2727
use Items;
2828

2929
public static $itemsArgumentPositionOffset = 0;

tests/Predis/Command/Traits/BloomFilters/MaxIterationsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use MaxIterations;
2929

3030
public static $maxIterationsArgumentPositionOffset = 0;

tests/Predis/Command/Traits/BloomFilters/NoCreateTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use NoCreate;
2929

3030
public static $noCreateArgumentPositionOffset = 0;

tests/Predis/Command/Traits/By/ByArgumentTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ protected function setUp(): void
2323
{
2424
parent::setUp();
2525

26-
$this->testClass = new class() extends RedisCommand {
26+
$this->testClass = new class extends RedisCommand {
2727
use ByArgument;
2828

2929
public static $byArgumentPositionOffset = 0;

tests/Predis/Command/Traits/By/GeoByTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected function setUp(): void
2626
{
2727
parent::setUp();
2828

29-
$this->testClass = new class() extends RedisCommand {
29+
$this->testClass = new class extends RedisCommand {
3030
use GeoBy;
3131

3232
public function getId()

tests/Predis/Command/Traits/ByLexByScoreTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ protected function setUp(): void
2525
{
2626
parent::setUp();
2727

28-
$this->testClass = new class() extends RedisCommand {
28+
$this->testClass = new class extends RedisCommand {
2929
use ByLexByScore;
3030

3131
public static $byLexByScoreArgumentPositionOffset = 0;

tests/Predis/Command/Traits/CountTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Count;
2929

3030
public static $countArgumentPositionOffset = 2;

tests/Predis/Command/Traits/DbTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use DB;
2929

3030
public static $dbArgumentPositionOffset = 0;

tests/Predis/Command/Traits/From/GeoFromTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected function setUp(): void
2626
{
2727
parent::setUp();
2828

29-
$this->testClass = new class() extends RedisCommand {
29+
$this->testClass = new class extends RedisCommand {
3030
use GeoFrom;
3131

3232
public function getId()

tests/Predis/Command/Traits/Get/GetTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Get;
2929

3030
public static $getArgumentPositionOffset = 0;

tests/Predis/Command/Traits/Json/IndentTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class IndentTest extends PredisTestCase
2222

2323
protected function setUp(): void
2424
{
25-
$this->testClass = new class() extends RedisCommand {
25+
$this->testClass = new class extends RedisCommand {
2626
use Indent;
2727

2828
public static $indentArgumentPositionOffset = 0;

tests/Predis/Command/Traits/Json/NewlineTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class NewlineTest extends PredisTestCase
2222

2323
protected function setUp(): void
2424
{
25-
$this->testClass = new class() extends RedisCommand {
25+
$this->testClass = new class extends RedisCommand {
2626
use Newline;
2727

2828
public static $newlineArgumentPositionOffset = 0;

tests/Predis/Command/Traits/Json/NxXxArgumentTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class NxXxArgumentTest extends PredisTestCase
2222

2323
protected function setUp(): void
2424
{
25-
$this->testClass = new class() extends RedisCommand {
25+
$this->testClass = new class extends RedisCommand {
2626
use NxXxArgument;
2727

2828
public static $nxXxArgumentPositionOffset = 0;

tests/Predis/Command/Traits/Json/SpaceTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class SpaceTest extends PredisTestCase
2222

2323
protected function setUp(): void
2424
{
25-
$this->testClass = new class() extends RedisCommand {
25+
$this->testClass = new class extends RedisCommand {
2626
use Space;
2727

2828
public static $spaceArgumentPositionOffset = 0;

tests/Predis/Command/Traits/KeysTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Keys;
2929

3030
public static $keysArgumentPositionOffset = 0;

tests/Predis/Command/Traits/LeftRightTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class LeftRightTest extends PredisTestCase
2222

2323
protected function setUp(): void
2424
{
25-
$this->testClass = new class() extends RedisCommand {
25+
$this->testClass = new class extends RedisCommand {
2626
use LeftRight;
2727

2828
public static $leftRightArgumentPositionOffset = 0;

tests/Predis/Command/Traits/Limit/LimitObjectTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use LimitObject;
2929

3030
public function getId()

tests/Predis/Command/Traits/Limit/LimitTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Limit;
2929

3030
public static $limitArgumentPositionOffset = 0;

tests/Predis/Command/Traits/MinMaxModifierTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use MinMaxModifier;
2929

3030
public function getId()

tests/Predis/Command/Traits/ReplaceTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ protected function setUp(): void
2323
{
2424
parent::setUp();
2525

26-
$this->testClass = new class() extends RedisCommand {
26+
$this->testClass = new class extends RedisCommand {
2727
use Replace;
2828

2929
public function getId()

tests/Predis/Command/Traits/RevTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Rev;
2929

3030
public static $revArgumentPositionOffset = 0;

tests/Predis/Command/Traits/StoredistTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Storedist;
2929

3030
public static $storeDistArgumentPositionOffset = 0;

tests/Predis/Command/Traits/TimeoutTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use Timeout;
2929

3030
public static $timeoutArgumentPositionOffset = 0;

tests/Predis/Command/Traits/To/ServerToTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use ServerTo;
2929

3030
public static $toArgumentPositionOffset = 0;

tests/Predis/Command/Traits/WeightsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class WeightsTest extends PredisTestCase
2222

2323
protected function setUp(): void
2424
{
25-
$this->testClass = new class() extends RedisCommand {
25+
$this->testClass = new class extends RedisCommand {
2626
use Weights;
2727

2828
public static $weightsArgumentPositionOffset = 0;

tests/Predis/Command/Traits/With/WithCoordTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use WithCoord;
2929

3030
public static $withCoordArgumentPositionOffset = 0;

tests/Predis/Command/Traits/With/WithDistTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use WithDist;
2929

3030
public static $withDistArgumentPositionOffset = 0;

tests/Predis/Command/Traits/With/WithHashTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
{
2525
parent::setUp();
2626

27-
$this->testClass = new class() extends RedisCommand {
27+
$this->testClass = new class extends RedisCommand {
2828
use WithHash;
2929

3030
public static $withHashArgumentPositionOffset = 0;

tests/Predis/Command/Traits/With/WithScoresTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ protected function setUp(): void
2626
{
2727
parent::setUp();
2828

29-
$this->testClass = new class() extends RedisCommand {
29+
$this->testClass = new class extends RedisCommand {
3030
use WithScores;
3131

3232
public function getId()

0 commit comments

Comments
 (0)