Apply minor code styling change, nothing that really matters.

This commit is contained in:
Daniele Alessandri
2011-10-02 23:19:08 +02:00
parent 68dba4cb12
commit c107d937fa
+1 -2
View File
@@ -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()) {