mirror of
https://github.com/predis/predis.git
synced 2026-08-22 02:42:03 +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);
|
|
}
|