* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Commands\Processors; use Predis\Commands\ICommand; /** * A command processor processes commands before they are sent to Redis. * * @author Daniele Alessandri */ interface ICommandProcessor { /** * Processes a Redis command. * * @param ICommand $command Redis command. */ public function process(ICommand $command); }