Gee, found more copy-paste errors ...
[core.git] / inc / classes / main / resolver / controller / image / class_ImageControllerResolver.php
index dde5f036217dca8eabf6732e959ade1b88db0ab8..8a14a722f704986dcab329b721f7a907135a4ef8 100644 (file)
@@ -36,31 +36,31 @@ class ImageControllerResolver extends BaseControllerResolver implements Controll
        }
 
        /**
-        * 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 createImageControllerResolver ($controllerName, ManageableApplication $applicationInstance) {
                // Create the new instance
                $resolverInstance = new ImageControllerResolver();
 
-               // 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