Gee, found more copy-paste errors ...
[core.git] / inc / classes / main / resolver / controller / html / class_HtmlControllerResolver.php
index 20e101cf5ec65a205d55e4ab80068a812b464263..c50f32a71d460c4d2c6bc235a799ba4fd57adf2c 100644 (file)
@@ -36,31 +36,31 @@ class HtmlControllerResolver extends BaseControllerResolver implements Controlle
        }
 
        /**
-        * Creates an instance of a resolver class with a given command
+        * Creates an instance of a resolver class with a given controller
         *
         * @param       $controllerName                         The controller we shall resolve
         * @param       $applicationInstance            An instance of a manageable application helper class
         * @return      $resolverInstance                       The prepared controller resolver instance
-        * @throws      EmptyVariableException          Thrown if default command is not set
+        * @throws      EmptyVariableException          Thrown if default controller is not set
         * @throws      InvalidControllerException      Thrown if default controller is invalid
         */
        public static final function createHtmlControllerResolver ($controllerName, ManageableApplication $applicationInstance) {
                // Create the new instance
                $resolverInstance = new HtmlControllerResolver();
 
-               // Is the variable $controllerName set and the command is valid?
+               // Is the variable $controllerName set and the controller is valid?
                if (empty($controllerName)) {
                        // Then thrown an exception here
-                       throw new EmptyVariableException(array($resolverInstance, 'commandName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
+                       throw new EmptyVariableException(array($resolverInstance, 'controllerName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
                } elseif ($resolverInstance->isControllerValid($controllerName) === FALSE) {
-                       // Invalid command found
+                       // Invalid controller found
                        throw new InvalidControllerException(array($resolverInstance, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
                }
 
                // Set the application instance
                $resolverInstance->setApplicationInstance($applicationInstance);
 
-               // Set command name
+               // Set controller name
                $resolverInstance->setControllerName($controllerName);
 
                // Return the prepared instance