mirror of
https://github.com/predis/predis.git
synced 2026-08-24 18:39:39 +00:00
12 lines
302 B
PHP
12 lines
302 B
PHP
<?php
|
|
|
|
namespace Predis\Commands\Processors;
|
|
|
|
interface ICommandProcessorChain
|
|
extends ICommandProcessor, \IteratorAggregate, \Countable {
|
|
|
|
public function add(ICommandProcessor $preprocessor);
|
|
public function remove(ICommandProcessor $preprocessor);
|
|
public function getProcessors();
|
|
}
|