mirror of
https://github.com/predis/predis.git
synced 2026-08-25 10:29:33 +00:00
13 lines
311 B
PHP
13 lines
311 B
PHP
<?php
|
|
|
|
namespace Predis\Protocols;
|
|
|
|
use Predis\ICommand;
|
|
|
|
interface IRedisProtocolExtended extends IRedisProtocol {
|
|
public function setSerializer(ICommandSerializer $serializer);
|
|
public function getSerializer();
|
|
public function setReader(IResponseReader $reader);
|
|
public function getReader();
|
|
}
|