Переглянути джерело

Implemented RedisServerProfile::supportsCommand.

Daniele Alessandri 15 роки тому
батько
коміт
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];