12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Predis\Protocol;
- use Predis\Command\CommandInterface;
- use Predis\Connection\ComposableConnectionInterface;
- interface ProtocolInterface extends ResponseReaderInterface
- {
-
- public function write(ComposableConnectionInterface $connection, CommandInterface $command);
-
- public function setOption($option, $value);
- }
|