소스 검색

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()) {