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