Extended core support by implementing ACL SETUSER, GETUSER, DRYRUN (#1193)

* Added support for ACL GETUSER, SETUSER, DRYRUN commands

* Change test to support Redis > 6.0.0

* Removed selectors check
This commit is contained in:
Vladyslav Vildanov
2023-03-15 14:57:12 +02:00
committed by GitHub
parent b898172009
commit 0e019cc08d
8 changed files with 298 additions and 0 deletions
+2
View File
@@ -18,6 +18,7 @@ use Predis\Command\Argument\Server\LimitOffsetCount;
use Predis\Command\Argument\Server\To;
use Predis\Command\CommandInterface;
use Predis\Command\FactoryInterface;
use Predis\Command\Redis\Container\ACL;
use Predis\Command\Redis\Container\FunctionContainer;
use Predis\Configuration\OptionsInterface;
use Predis\Connection\ConnectionInterface;
@@ -224,6 +225,7 @@ use Predis\Response\Status;
*
* Container commands
* @property FunctionContainer $function
* @property ACL $acl
*/
interface ClientInterface
{