![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.intellicart.co/vendor/predis/predis/src/Command/ |
<?php /* * This file is part of the Predis package. * * (c) Daniele Alessandri <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Command; /** * Command factory interface. * * A command factory is used through the library to create instances of commands * classes implementing Predis\Command\CommandInterface mapped to Redis commands * by their command ID string (SET, GET, etc...). * * @author Daniele Alessandri <[email protected]> */ interface FactoryInterface { /** * Checks if the command factory supports the specified list of commands. * * @param array $commandIDs List of command IDs * * @return bool */ public function supports(string ...$commandIDs): bool; /** * Creates a new command instance. * * @param string $commandID Command ID * @param array $arguments Arguments for the command * * @return CommandInterface */ public function create(string $commandID, array $arguments = array()): CommandInterface; }