IPreprocessingSupport.php 194 B

12345678
  1. <?php
  2. namespace Predis\Commands\Preprocessors;
  3. interface IPreprocessingSupport {
  4. public function setPreprocessor(ICommandPreprocessor $processor);
  5. public function getPreprocessor();
  6. }