Predis\Connection\PhpiredisStreamConnection::writeRequest PHP Метод

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

public writeRequest ( Predis\Command\CommandInterface $command )
$command Predis\Command\CommandInterface
    public function writeRequest(CommandInterface $command)
    {
        $arguments = $command->getArguments();
        array_unshift($arguments, $command->getId());
        $this->write(phpiredis_format_command($arguments));
    }