]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/resolver/controller/console/class_HubConsoleControllerResolver.php
Updated 'core'.
[hub.git] / application / hub / main / resolver / controller / console / class_HubConsoleControllerResolver.php
index 62030a930c6e4028dc750859f977f8e9031d0973..2a73ee25505c894f3dcc17e780f81a4d375d5586 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A resolver for resolving controllers locally
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -32,19 +32,19 @@ class HubConsoleControllerResolver extends BaseControllerResolver implements Con
                parent::__construct(__CLASS__);
 
                // Set prefix to "HubConsole"
-               $this->setClassPrefix('HubConsole');
+               $this->setClassPrefix('hub_console');
        }
 
        /**
         * Creates an instance of a resolver class with a given command
         *
         * @param       $controllerName                         The controller we shall resolve
-        * @param       $appInstance                            An instance of a manageable application helper class
+        * @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      InvalidControllerException      Thrown if default controller is invalid
         */
-       public static final function createHubConsoleControllerResolver ($controllerName, ManageableApplication $appInstance) {
+       public static final function createHubConsoleControllerResolver ($controllerName, ManageableApplication $applicationInstance) {
                // Create the new instance
                $resolverInstance = new HubConsoleControllerResolver();
 
@@ -52,13 +52,13 @@ class HubConsoleControllerResolver extends BaseControllerResolver implements Con
                if (empty($controllerName)) {
                        // Then thrown an exception here
                        throw new EmptyVariableException(array($resolverInstance, 'commandName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
-               } elseif ($resolverInstance->isControllerValid($controllerName) === false) {
+               } elseif ($resolverInstance->isControllerValid($controllerName) === FALSE) {
                        // Invalid command found
                        throw new InvalidControllerException(array($resolverInstance, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
                }
 
                // Set the application instance
-               $resolverInstance->setApplicationInstance($appInstance);
+               $resolverInstance->setApplicationInstance($applicationInstance);
 
                // Set command name
                $resolverInstance->setControllerName($controllerName);
@@ -78,7 +78,7 @@ class HubConsoleControllerResolver extends BaseControllerResolver implements Con
        public function resolveController () {
                // Init variables
                $controllerName = '';
-               $controllerInstance = null;
+               $controllerInstance = NULL;
 
                // Get the command name 
                $controllerName = $this->getControllerName();