mirror of
https://github.com/predis/predis.git
synced 2026-08-24 23:09:38 +00:00
9 lines
175 B
PHP
9 lines
175 B
PHP
<?php
|
|
|
|
namespace Predis\Protocols;
|
|
|
|
interface IResponseReader {
|
|
public function setHandler($prefix, IResponseHandler $handler);
|
|
public function getHandler($prefix);
|
|
}
|