ICommandPreprocessorChain.php 320 B

1234567891011
  1. <?php
  2. namespace Predis\Commands\Preprocessors;
  3. interface ICommandPreprocessorChain
  4. extends ICommandPreprocessor, \IteratorAggregate, \Countable {
  5. public function add(ICommandPreprocessor $preprocessor);
  6. public function remove(ICommandPreprocessor $preprocessor);
  7. public function getPreprocessors();
  8. }