mirror of
https://github.com/predis/predis.git
synced 2026-08-18 23:51:45 +00:00
12 lines
320 B
PHP
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();
|
|
}
|