1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Predis\Protocol;
- use Predis\Connection\ComposableConnectionInterface;
- interface ResponseHandlerInterface
- {
-
- public function handle(ComposableConnectionInterface $connection, $payload);
- }
|