mirror of
https://github.com/predis/predis.git
synced 2026-08-24 11:19:28 +00:00
12 lines
216 B
PHP
12 lines
216 B
PHP
<?php
|
|
|
|
namespace Predis\Options;
|
|
|
|
use Predis\Commands\Processors\KeyPrefixProcessor;
|
|
|
|
class ClientPrefix extends Option {
|
|
public function validate($value) {
|
|
return new KeyPrefixProcessor($value);
|
|
}
|
|
}
|