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