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