mirror of
https://github.com/predis/predis.git
synced 2026-08-21 17:31:03 +00:00
8 lines
135 B
PHP
8 lines
135 B
PHP
<?php
|
|
|
|
namespace Predis\Commands\Preprocessors;
|
|
|
|
interface ICommandPreprocessor {
|
|
public function process($method, &$arguments);
|
|
}
|