Skip to content

Commit ad4fa67

Browse files
committed
Revert container command changes
1 parent 9d1b8a1 commit ad4fa67

13 files changed

+40
-40
lines changed

src/Client.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
use InvalidArgumentException;
1717
use IteratorAggregate;
1818
use Predis\Command\CommandInterface;
19-
use Predis\Command\Container\ContainerFactory;
20-
use Predis\Command\Container\ContainerInterface;
2119
use Predis\Command\RawCommand;
20+
use Predis\Command\Redis\Container\ContainerFactory;
21+
use Predis\Command\Redis\Container\ContainerInterface;
2222
use Predis\Command\ScriptCommand;
2323
use Predis\Configuration\Options;
2424
use Predis\Configuration\OptionsInterface;

src/ClientContextInterface.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
use Predis\Command\Argument\TimeSeries\MRangeArguments;
3939
use Predis\Command\Argument\TimeSeries\RangeArguments;
4040
use Predis\Command\CommandInterface;
41-
use Predis\Command\Container\ACL;
42-
use Predis\Command\Container\FUNCTIONS;
43-
use Predis\Command\Container\Json\JSONDEBUG;
44-
use Predis\Command\Container\Search\FTCONFIG;
45-
use Predis\Command\Container\Search\FTCURSOR;
41+
use Predis\Command\Redis\Container\ACL;
42+
use Predis\Command\Redis\Container\FunctionContainer;
43+
use Predis\Command\Redis\Container\Json\JSONDEBUG;
44+
use Predis\Command\Redis\Container\Search\FTCONFIG;
45+
use Predis\Command\Redis\Container\Search\FTCURSOR;
4646

4747
/**
4848
* Interface defining a client-side context such as a pipeline or transaction.
@@ -336,11 +336,11 @@
336336
* @method $this geosearchstore(string $destination, string $source, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $storeDist = false)
337337
*
338338
* Container commands
339-
* @property FUNCTIONS $function
340-
* @property FTCONFIG $ftconfig
341-
* @property FTCURSOR $ftcursor
342-
* @property JSONDEBUG $jsondebug
343-
* @property ACL $acl
339+
* @property FunctionContainer $function
340+
* @property FTCONFIG $ftconfig
341+
* @property FTCURSOR $ftcursor
342+
* @property JSONDEBUG $jsondebug
343+
* @property ACL $acl
344344
*/
345345
interface ClientContextInterface
346346
{

src/ClientInterface.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838
use Predis\Command\Argument\TimeSeries\MRangeArguments;
3939
use Predis\Command\Argument\TimeSeries\RangeArguments;
4040
use Predis\Command\CommandInterface;
41-
use Predis\Command\Container\ACL;
42-
use Predis\Command\Container\FUNCTIONS;
43-
use Predis\Command\Container\Json\JSONDEBUG;
44-
use Predis\Command\Container\Search\FTCONFIG;
45-
use Predis\Command\Container\Search\FTCURSOR;
4641
use Predis\Command\FactoryInterface;
42+
use Predis\Command\Redis\Container\ACL;
43+
use Predis\Command\Redis\Container\FunctionContainer;
44+
use Predis\Command\Redis\Container\Json\JSONDEBUG;
45+
use Predis\Command\Redis\Container\Search\FTCONFIG;
46+
use Predis\Command\Redis\Container\Search\FTCURSOR;
4747
use Predis\Configuration\OptionsInterface;
4848
use Predis\Connection\ConnectionInterface;
4949
use Predis\Response\Status;
@@ -354,11 +354,11 @@
354354
* @method int geosearchstore(string $destination, string $source, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $storeDist = false)
355355
*
356356
* Container commands
357-
* @property FUNCTIONS $function
358-
* @property FTCONFIG $ftconfig
359-
* @property FTCURSOR $ftcursor
360-
* @property JSONDEBUG $jsondebug
361-
* @property ACL $acl
357+
* @property FunctionContainer $function
358+
* @property FTCONFIG $ftconfig
359+
* @property FTCURSOR $ftcursor
360+
* @property JSONDEBUG $jsondebug
361+
* @property ACL $acl
362362
*/
363363
interface ClientInterface
364364
{

src/Command/Container/ACL.php src/Command/Redis/Container/ACL.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container;
13+
namespace Predis\Command\Redis\Container;
1414

1515
use Predis\Response\Status;
1616

src/Command/Container/AbstractContainer.php src/Command/Redis/Container/AbstractContainer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container;
13+
namespace Predis\Command\Redis\Container;
1414

1515
use Predis\ClientInterface;
1616

src/Command/Container/ContainerFactory.php src/Command/Redis/Container/ContainerFactory.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container;
13+
namespace Predis\Command\Redis\Container;
1414

1515
use Predis\ClientConfiguration;
1616
use Predis\ClientInterface;
1717
use UnexpectedValueException;
1818

1919
class ContainerFactory
2020
{
21-
private const CONTAINER_NAMESPACE = "Predis\Command\Container";
21+
private const CONTAINER_NAMESPACE = "Predis\Command\Redis\Container";
2222

2323
/**
2424
* Mappings for class names that corresponds to PHP reserved words.
2525
*
2626
* @var array
2727
*/
2828
private static $specialMappings = [
29-
'FUNCTION' => FUNCTIONS::class,
29+
'FUNCTION' => FunctionContainer::class,
3030
];
3131

3232
/**

src/Command/Container/ContainerInterface.php src/Command/Redis/Container/ContainerInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container;
13+
namespace Predis\Command\Redis\Container;
1414

1515
interface ContainerInterface
1616
{

src/Command/Container/FUNCTIONS.php src/Command/Redis/Container/FunctionContainer.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container;
13+
namespace Predis\Command\Redis\Container;
1414

1515
use Predis\Response\Status;
1616

1717
/**
1818
* @method string load(string $functionCode, bool $replace = 'false')
1919
* @method Status delete(string $libraryName)
2020
*/
21-
class FUNCTIONS extends AbstractContainer
21+
class FunctionContainer extends AbstractContainer
2222
{
2323
public function getContainerCommandId(): string
2424
{

src/Command/Container/Json/JSONDEBUG.php src/Command/Redis/Container/Json/JSONDEBUG.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container\Json;
13+
namespace Predis\Command\Redis\Container\Json;
1414

15-
use Predis\Command\Container\AbstractContainer;
15+
use Predis\Command\Redis\Container\AbstractContainer;
1616

1717
/**
1818
* @method array memory(string $key, string $path)

src/Command/Container/Search/FTCONFIG.php src/Command/Redis/Container/Search/FTCONFIG.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container\Search;
13+
namespace Predis\Command\Redis\Container\Search;
1414

15-
use Predis\Command\Container\AbstractContainer;
15+
use Predis\Command\Redis\Container\AbstractContainer;
1616
use Predis\Response\Status;
1717

1818
/**

src/Command/Container/Search/FTCURSOR.php src/Command/Redis/Container/Search/FTCURSOR.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container\Search;
13+
namespace Predis\Command\Redis\Container\Search;
1414

1515
use Predis\Command\Argument\Search\CursorArguments;
16-
use Predis\Command\Container\AbstractContainer;
16+
use Predis\Command\Redis\Container\AbstractContainer;
1717
use Predis\Response\Status;
1818

1919
/**

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container;
13+
namespace Predis\Command\Redis\Container;
1414

1515
use PHPUnit\Framework\TestCase;
1616
use Predis\ClientInterface;

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
* file that was distributed with this source code.
1111
*/
1212

13-
namespace Predis\Command\Container;
13+
namespace Predis\Command\Redis\Container;
1414

1515
use PHPUnit\Framework\MockObject\MockObject;
1616
use PHPUnit\Framework\TestCase;
1717
use Predis\ClientInterface;
18-
use Predis\Command\Container\Search\FTCONFIG;
18+
use Predis\Command\Redis\Container\Search\FTCONFIG;
1919
use UnexpectedValueException;
2020

2121
class ContainerFactoryTest extends TestCase
@@ -73,7 +73,7 @@ public function testThrowsExceptionOnNonExistingCommand(
7373
public function containerProvider(): array
7474
{
7575
return [
76-
'core command' => ['function', FUNCTIONS::class],
76+
'core command' => ['function', FunctionContainer::class],
7777
'module command' => ['ftconfig', FTCONFIG::class],
7878
];
7979
}

0 commit comments

Comments
 (0)