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