]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/resolver/command/class_BaseCommandResolver.php
Made lower to upper case:
[core.git] / inc / classes / main / resolver / command / class_BaseCommandResolver.php
index 02d09ccd324725b600e5c90fd44e6cba8f798de3..7321c4227bedbe9febf403fad3d6963115d88982 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -58,15 +58,15 @@ class BaseCommandResolver extends BaseResolver {
        }
 
        /**
-        * Checks wether the given command is valid
+        * Checks whether the given command is valid
         *
         * @param       $commandName    The default command we shall execute
-        * @return      $isValid                Wether the given command is valid
+        * @return      $isValid                Whether the given command is valid
         * @throws      EmptyVariableException  Thrown if given command is not set
         */
        public function isCommandValid ($commandName) {
                // By default nothing shall be valid
-               $isValid = false;
+               $isValid = FALSE;
 
                // Is a command set?
                if (empty($commandName)) {
@@ -83,7 +83,7 @@ class BaseCommandResolver extends BaseResolver {
                // Is this class already loaded?
                if (class_exists($this->getClassName())) {
                        // This class does exist. :-)
-                       $isValid = true;
+                       $isValid = TRUE;
                } // END - if
 
                // Set command name