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