Просмотр исходного кода

Implemented RedisServerProfile::supportsCommand.

Daniele Alessandri 15 лет назад
Родитель
Сommit
a4e067891a
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      lib/Predis.php

+ 4 - 0
lib/Predis.php

@@ -698,6 +698,10 @@ abstract class RedisServerProfile {
         return new $defaultProfile();
     }
 
+    public function supportsCommand($command) {
+        return isset($this->_registeredCommands[$command]);
+    }
+
     public function createCommand($method, $arguments = array()) {
         $commandClass = $this->_registeredCommands[$method];