mirror of
https://github.com/predis/predis.git
synced 2026-08-22 12:41:00 +00:00
9 lines
194 B
PHP
9 lines
194 B
PHP
<?php
|
|
|
|
namespace Predis\Commands\Preprocessors;
|
|
|
|
interface IPreprocessingSupport {
|
|
public function setPreprocessor(ICommandPreprocessor $processor);
|
|
public function getPreprocessor();
|
|
}
|