mirror of
https://github.com/predis/predis.git
synced 2026-09-16 13:27:14 +00:00
Apply minor code styling change, nothing that really matters.
This commit is contained in:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user