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