Predis\Command\CommandInterface::getArguments PHP Метод

getArguments() публичный Метод

Gets the arguments of the command.
public getArguments ( ) : array
Результат array
    public function getArguments();

Usage Example

Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function executeCommand(CommandInterface $command, callable $callback)
 {
     if ($this->buffer->isEmpty() && ($stream = $this->getResource())) {
         $this->loop->addWriteStream($stream, $this->writableCallback);
     }
     $request = $this->serializer->getRequestMessage($command->getId(), $command->getArguments());
     $this->buffer->append($request);
     $this->commands->enqueue([$command, $callback]);
 }
All Usage Examples Of Predis\Command\CommandInterface::getArguments