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