mirror of
https://github.com/predis/predis.git
synced 2026-08-24 12:29:34 +00:00
14 lines
322 B
PHP
14 lines
322 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Distribution\INodeKeyGenerator;
|
|
|
|
interface ICommand {
|
|
public function getId();
|
|
public function getHash(INodeKeyGenerator $distributor);
|
|
public function setArguments(Array $arguments);
|
|
public function getArguments();
|
|
public function parseResponse($data);
|
|
}
|