Files
predis/lib/Predis/Commands/Preprocessors/ICommandPreprocessorChain.php
T
2011-04-05 12:31:00 +02:00

12 lines
320 B
PHP

<?php
namespace Predis\Commands\Preprocessors;
interface ICommandPreprocessorChain
extends ICommandPreprocessor, \IteratorAggregate, \Countable {
public function add(ICommandPreprocessor $preprocessor);
public function remove(ICommandPreprocessor $preprocessor);
public function getPreprocessors();
}