mirror of
https://github.com/predis/predis.git
synced 2026-08-24 18:09:33 +00:00
12 lines
294 B
PHP
12 lines
294 B
PHP
<?php
|
|
|
|
namespace Predis\Protocol;
|
|
|
|
use Predis\Commands\ICommand;
|
|
use Predis\Network\IConnectionComposable;
|
|
|
|
interface IProtocolProcessor extends IResponseReader {
|
|
public function write(IConnectionComposable $connection, ICommand $command);
|
|
public function setOption($option, $value);
|
|
}
|