Преглед на файлове

Apply minor code styling change, nothing that really matters.

Daniele Alessandri преди 13 години
родител
ревизия
c107d937fa
променени са 1 файла, в които са добавени 1 реда и са изтрити 2 реда
  1. 1 2
      lib/Predis/Profiles/ServerProfile.php

+ 1 - 2
lib/Predis/Profiles/ServerProfile.php

@@ -70,8 +70,7 @@ abstract class ServerProfile implements IServerProfile, IProcessingSupport {
     }
 
     public function supportsCommand($command) {
-        $command = strtolower($command);
-        return isset($this->_registeredCommands[$command]);
+        return isset($this->_registeredCommands[strtolower($command)]);
     }
 
     public function createCommand($method, $arguments = array()) {