Author: Daniele Alessandri (suppakilla@gmail.com)
Inheritance: extends Factory
示例#1
0
文件: Commands.php 项目: nrk/predis
 /**
  * {@inheritdoc}
  */
 public function getDefault(OptionsInterface $options)
 {
     $commands = new RedisFactory();
     if (isset($options->prefix)) {
         $commands->setProcessor($options->prefix);
     }
     return $commands;
 }