mirror of
https://github.com/predis/predis.git
synced 2026-08-28 11:09:49 +00:00
10 lines
169 B
PHP
10 lines
169 B
PHP
<?php
|
|
|
|
namespace Predis\Protocol;
|
|
|
|
use Predis\Network\IConnectionComposable;
|
|
|
|
interface IResponseReader {
|
|
public function read(IConnectionComposable $connection);
|
|
}
|