123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Predis\Option;
- use Predis\Command\Processor\KeyPrefixProcessor;
- class ClientPrefix extends AbstractOption
- {
-
- public function filter(ClientOptionsInterface $options, $value)
- {
- return new KeyPrefixProcessor($value);
- }
- }
|