Skip to content

Commit 46dfbbe

Browse files
Vladyslav VildanovVladyslav Vildanov
Vladyslav Vildanov
authored and
Vladyslav Vildanov
committed
Changed ContainerInterface and AbstractContainer
1 parent 8e24946 commit 46dfbbe

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed

src/Command/Redis/Container/AbstractContainer.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,23 @@ public function __construct(ClientInterface $client)
2626
$this->client = $client;
2727
}
2828

29-
3029
/**
3130
* {@inheritDoc}
3231
*/
33-
public function __call($commandID, $arguments)
32+
public function __call($subcommandID, $arguments)
3433
{
35-
array_unshift($arguments, strtoupper($commandID));
34+
array_unshift($arguments, strtoupper($subcommandID));
3635

3736
return $this->client->executeCommand(
38-
$this->client->createCommand($this->getContainerId(), $arguments)
37+
$this->client->createCommand($this->getContainerCommandId(), $arguments)
3938
);
4039
}
4140

4241
/**
4342
* {@inheritDoc}
4443
*/
45-
public function getContainerId(): string
44+
public function getContainerCommandId(): string
4645
{
47-
return static::$containerId;
46+
return static::$containerCommandId;
4847
}
4948
}

src/Command/Redis/Container/ContainerInterface.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ interface ContainerInterface
1818
* Creates Redis container command with subcommand as virtual method name
1919
* and sends a request to the server.
2020
*
21-
* @param $commandID
21+
* @param $subcommandID
2222
* @param $arguments
2323
* @return mixed
2424
*/
25-
public function __call($commandID, $arguments);
25+
public function __call($subcommandID, $arguments);
2626

2727
/**
28-
* Returns containerId of specific container.
28+
* Returns containerCommandId of specific container command.
2929
*
3030
* @return string
3131
*/
32-
public function getContainerId(): string;
32+
public function getContainerCommandId(): string;
3333
}

src/Command/Redis/Container/FunctionContainer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
*/
2121
class FunctionContainer extends AbstractContainer
2222
{
23-
protected static $containerId = 'function';
23+
protected static $containerCommandId = 'function';
2424
}

tests/Predis/Command/Redis/Container/AbstractContainerTest.php

+12-2
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-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+
313
namespace Predis\Command\Redis\Container;
414

515
use PHPUnit\Framework\TestCase;
@@ -41,7 +51,7 @@ protected function setUp(): void
4151
$this->mockClient = $this->getMockBuilder(ClientInterface::class)->getMock();
4252

4353
$this->testClass = new class($this->mockClient) extends AbstractContainer {
44-
protected static $containerId = 'test';
54+
protected static $containerCommandId = 'test';
4555
};
4656
}
4757

@@ -50,7 +60,7 @@ protected function setUp(): void
5060
*/
5161
public function testGetContainerId(): void
5262
{
53-
$this->assertSame('test', $this->testClass->getContainerId());
63+
$this->assertSame('test', $this->testClass->getContainerCommandId());
5464
}
5565

5666
/**

0 commit comments

Comments
 (0)