mirror of
https://github.com/predis/predis.git
synced 2026-08-24 23:49:41 +00:00
8 lines
129 B
PHP
8 lines
129 B
PHP
<?php
|
|
|
|
namespace Predis\Commands\Processors;
|
|
|
|
interface ICommandProcessor {
|
|
public function process($method, &$arguments);
|
|
}
|