Skip to content

Commit 49db1ac

Browse files
committed
Codestyle fixes
1 parent da3f616 commit 49db1ac

File tree

4 files changed

+45
-5
lines changed

4 files changed

+45
-5
lines changed

src/Command/Redis/BITFIELD_RO.php

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<?php
22

3+
/*
4+
* This file is part of the Predis package.
5+
*
6+
* (c) 2009-2020 Daniele Alessandri
7+
* (c) 2021-2025 Till Krüss
8+
*
9+
* For the full copyright and license information, please view the LICENSE
10+
* file that was distributed with this source code.
11+
*/
12+
313
namespace Predis\Command\Redis;
414

515
use Predis\Command\Command as RedisCommand;
@@ -15,7 +25,7 @@ public function getId()
1525
}
1626

1727
/**
18-
* @param array $arguments
28+
* @param array $arguments
1929
* @return void
2030
*/
2131
public function setArguments(array $arguments)

src/Command/Redis/Search/FT_LIST.php

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<?php
22

3+
/*
4+
* This file is part of the Predis package.
5+
*
6+
* (c) 2009-2020 Daniele Alessandri
7+
* (c) 2021-2025 Till Krüss
8+
*
9+
* For the full copyright and license information, please view the LICENSE
10+
* file that was distributed with this source code.
11+
*/
12+
313
namespace Predis\Command\Redis\Search;
414

515
use Predis\Command\Command as RedisCommand;

tests/Predis/Command/Redis/BITFIELD_RO_Test.php

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<?php
22

3+
/*
4+
* This file is part of the Predis package.
5+
*
6+
* (c) 2009-2020 Daniele Alessandri
7+
* (c) 2021-2025 Till Krüss
8+
*
9+
* For the full copyright and license information, please view the LICENSE
10+
* file that was distributed with this source code.
11+
*/
12+
313
namespace Predis\Command\Redis;
414

515
class BITFIELD_RO_Test extends PredisCommandTestCase
@@ -54,12 +64,12 @@ public function argumentsProvider(): array
5464
['key'],
5565
],
5666
'with single encoding-offset entry' => [
57-
['key', ["encoding" => "offset"]],
58-
['key', "GET", "encoding", "offset"],
67+
['key', ['encoding' => 'offset']],
68+
['key', 'GET', 'encoding', 'offset'],
5969
],
6070
'with multiple encoding-offset entry' => [
61-
['key', ["encoding" => "offset", "encoding1" => "offset1", "encoding2" => "offset2"]],
62-
['key', "GET", "encoding", "offset", "GET", "encoding1", "offset1", "GET", "encoding2", "offset2"],
71+
['key', ['encoding' => 'offset', 'encoding1' => 'offset1', 'encoding2' => 'offset2']],
72+
['key', 'GET', 'encoding', 'offset', 'GET', 'encoding1', 'offset1', 'GET', 'encoding2', 'offset2'],
6373
],
6474
];
6575
}

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

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
<?php
22

3+
/*
4+
* This file is part of the Predis package.
5+
*
6+
* (c) 2009-2020 Daniele Alessandri
7+
* (c) 2021-2025 Till Krüss
8+
*
9+
* For the full copyright and license information, please view the LICENSE
10+
* file that was distributed with this source code.
11+
*/
12+
313
namespace Predis\Command\Redis\Search;
414

515
use Predis\Command\Argument\Search\SchemaFields\TextField;

0 commit comments

Comments
 (0)