]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/resolver/command/web/class_
Made lower to upper case:
[core.git] / inc / classes / main / resolver / command / web / class_
index 08086f0f9dc81b1d838efce11e18e9faef1de94d..e1c1e1f60eb5d31cc4c2aa5ba025877304b342d7 100644 (file)
@@ -57,7 +57,7 @@ class Web???CommandResolver extends BaseCommandResolver implements CommandResolv
                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);
                }
@@ -92,7 +92,7 @@ class Web???CommandResolver extends BaseCommandResolver implements CommandResolv
                if (empty($commandName)) $commandName = $this->getConfigInstance()->getConfigEntry('default_web_command');
 
                // Check if the 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
@@ -128,7 +128,7 @@ class Web???CommandResolver extends BaseCommandResolver implements CommandResolv
                if (empty($commandName)) $commandName = $this->getConfigInstance()->getConfigEntry('default_web_command');
 
                // Check if the 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);
                }