mirror of
https://github.com/predis/predis.git
synced 2026-08-25 11:59:34 +00:00
10 lines
157 B
PHP
10 lines
157 B
PHP
<?php
|
|
|
|
namespace Predis\Commands\Processors;
|
|
|
|
use Predis\Commands\ICommand;
|
|
|
|
interface ICommandProcessor {
|
|
public function process(ICommand $command);
|
|
}
|