mirror of
https://github.com/predis/predis.git
synced 2026-08-20 03:11:48 +00:00
11 lines
297 B
PHP
11 lines
297 B
PHP
<?php
|
|
|
|
namespace Predis\Protocols;
|
|
|
|
interface IProtocolProcessorExtended extends IProtocolProcessor {
|
|
public function setSerializer(ICommandSerializer $serializer);
|
|
public function getSerializer();
|
|
public function setReader(IResponseReader $reader);
|
|
public function getReader();
|
|
}
|