123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Predis\Options;
- use Predis\Commands\Processors\KeyPrefixProcessor;
- class ClientPrefix extends Option
- {
-
- public function filter(IClientOptions $options, $value)
- {
- return new KeyPrefixProcessor($value);
- }
- }
|