]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/resolver/command/console/class_HubConsoleCommandResolver.php
Made lower to upper case:
[hub.git] / application / hub / main / resolver / command / console / class_HubConsoleCommandResolver.php
index 7bb7c53942fae33b994c9b624422a44a04990dcd..199f1251fc41afa0d34e8f44bf15f21981d3d870 100644 (file)
@@ -52,7 +52,7 @@ class HubConsoleCommandResolver extends BaseCommandResolver implements CommandRe
                if (empty($commandName)) {
                        // Then thrown an exception here
                        throw new EmptyVariableException(array($resolverInstance, 'commandName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
-               } elseif ($resolverInstance->isCommandValid($commandName) === false) {
+               } elseif ($resolverInstance->isCommandValid($commandName) === FALSE) {
                        // Invalid command found
                        throw new InvalidCommandException(array($resolverInstance, $commandName), self::EXCEPTION_INVALID_COMMAND);
                }
@@ -87,7 +87,7 @@ class HubConsoleCommandResolver extends BaseCommandResolver implements CommandRe
                if (empty($commandName)) $commandName = $this->getConfigInstance()->getConfigEntry('default_console_command');
 
                // Check if command is valid
-               if ($this->isCommandValid($commandName) === false) {
+               if ($this->isCommandValid($commandName) === FALSE) {
                        // This command is invalid!
                        throw new InvalidCommandException(array($this, $commandName), self::EXCEPTION_INVALID_COMMAND);
                } // END - if
@@ -123,7 +123,7 @@ class HubConsoleCommandResolver extends BaseCommandResolver implements CommandRe
                if (empty($commandName)) $commandName = $this->getConfigInstance()->getConfigEntry('default_console_command');
 
                // Check if command is valid
-               if ($this->isCommandValid($commandName) === false) {
+               if ($this->isCommandValid($commandName) === FALSE) {
                        // This command is invalid!
                        throw new InvalidCommandException(array($this, $commandName), self::EXCEPTION_INVALID_COMMAND);
                }