File tree 4 files changed +22
-13
lines changed
src/Command/Redis/Container
tests/Predis/Command/Redis/Container
4 files changed +22
-13
lines changed Original file line number Diff line number Diff line change @@ -26,24 +26,23 @@ public function __construct(ClientInterface $client)
26
26
$ this ->client = $ client ;
27
27
}
28
28
29
-
30
29
/**
31
30
* {@inheritDoc}
32
31
*/
33
- public function __call ($ commandID , $ arguments )
32
+ public function __call ($ subcommandID , $ arguments )
34
33
{
35
- array_unshift ($ arguments , strtoupper ($ commandID ));
34
+ array_unshift ($ arguments , strtoupper ($ subcommandID ));
36
35
37
36
return $ this ->client ->executeCommand (
38
- $ this ->client ->createCommand ($ this ->getContainerId (), $ arguments )
37
+ $ this ->client ->createCommand ($ this ->getContainerCommandId (), $ arguments )
39
38
);
40
39
}
41
40
42
41
/**
43
42
* {@inheritDoc}
44
43
*/
45
- public function getContainerId (): string
44
+ public function getContainerCommandId (): string
46
45
{
47
- return static ::$ containerId ;
46
+ return static ::$ containerCommandId ;
48
47
}
49
48
}
Original file line number Diff line number Diff line change @@ -18,16 +18,16 @@ interface ContainerInterface
18
18
* Creates Redis container command with subcommand as virtual method name
19
19
* and sends a request to the server.
20
20
*
21
- * @param $commandID
21
+ * @param $subcommandID
22
22
* @param $arguments
23
23
* @return mixed
24
24
*/
25
- public function __call ($ commandID , $ arguments );
25
+ public function __call ($ subcommandID , $ arguments );
26
26
27
27
/**
28
- * Returns containerId of specific container.
28
+ * Returns containerCommandId of specific container command .
29
29
*
30
30
* @return string
31
31
*/
32
- public function getContainerId (): string ;
32
+ public function getContainerCommandId (): string ;
33
33
}
Original file line number Diff line number Diff line change 20
20
*/
21
21
class FunctionContainer extends AbstractContainer
22
22
{
23
- protected static $ containerId = 'function ' ;
23
+ protected static $ containerCommandId = 'function ' ;
24
24
}
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
+ /*
4
+ * This file is part of the Predis package.
5
+ *
6
+ * (c) 2009-2020 Daniele Alessandri
7
+ * (c) 2021-2023 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
+
3
13
namespace Predis \Command \Redis \Container ;
4
14
5
15
use PHPUnit \Framework \TestCase ;
@@ -41,7 +51,7 @@ protected function setUp(): void
41
51
$ this ->mockClient = $ this ->getMockBuilder (ClientInterface::class)->getMock ();
42
52
43
53
$ this ->testClass = new class ($ this ->mockClient ) extends AbstractContainer {
44
- protected static $ containerId = 'test ' ;
54
+ protected static $ containerCommandId = 'test ' ;
45
55
};
46
56
}
47
57
@@ -50,7 +60,7 @@ protected function setUp(): void
50
60
*/
51
61
public function testGetContainerId (): void
52
62
{
53
- $ this ->assertSame ('test ' , $ this ->testClass ->getContainerId ());
63
+ $ this ->assertSame ('test ' , $ this ->testClass ->getContainerCommandId ());
54
64
}
55
65
56
66
/**
You can’t perform that action at this time.
0 commit comments