]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/resolver/action/html/class_HtmlActionResolver.php
Continued:
[core.git] / framework / main / classes / resolver / action / html / class_HtmlActionResolver.php
index 54d5fd76a859b043b610523c46d589fe9d886724..55a313e8f84c5a5a6bb72c0dbec5adbaa95cb971 100644 (file)
@@ -97,13 +97,13 @@ class HtmlActionResolver extends BaseActionResolver implements ActionResolver {
                // Is the action empty? Then fall back to default action
                if (empty($actionName)) {
                        $actionName = FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('default_action');
-               } // END - if
+               }
 
                // Check if action is valid
                if ($this->isActionValid($actionName) === false) {
                        // This action is invalid!
                        throw new InvalidActionException(array($this, $actionName), self::EXCEPTION_INVALID_ACTION);
-               } // END - if
+               }
 
                // Get the action
                $actionInstance = $this->loadAction();
@@ -112,7 +112,7 @@ class HtmlActionResolver extends BaseActionResolver implements ActionResolver {
                if ((!is_object($actionInstance)) || (!$actionInstance instanceof Actionable)) {
                        // This action has an invalid instance!
                        throw new InvalidActionInstanceException(array($this, $actionName), self::EXCEPTION_INVALID_ACTION);
-               } // END - if
+               }
 
                // Set last action
                $this->setResolvedInstance($actionInstance);
@@ -137,13 +137,13 @@ class HtmlActionResolver extends BaseActionResolver implements ActionResolver {
                // Is the action empty? Then fall back to default action
                if (empty($actionName)) {
                        $actionName = FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('default_action');
-               } // END - if
+               }
 
                // Check if action is valid
                if ($this->isActionValid($actionName) === false) {
                        // This action is invalid!
                        throw new InvalidActionException(array($this, $actionName), self::EXCEPTION_INVALID_ACTION);
-               } // END - if
+               }
 
                // Get the action
                $actionInstance = $this->loadAction();