]> git.mxchange.org Git - core.git/blobdiff - framework/main/interfaces/resolver/actions/class_ActionResolver.php
Continued:
[core.git] / framework / main / interfaces / resolver / actions / class_ActionResolver.php
index c63382fb671dc39678851dc6d9812f0103fd2a20..a3f468b9dd1cd796a21393c0b5b2832fcf1c159b 100644 (file)
@@ -45,12 +45,13 @@ interface ActionResolver extends Resolver {
        function resolveActionByRequest (Requestable $requestInstance);
 
        /**
-        * Checks whether the given action is valid
+        * Checks whether the given action is valid within namespace
         *
+        * @param       $namespace              Namespace to check
         * @param       $actionName             The default action we shall execute
         * @return      $isValid                Whether the given action is valid
         * @throws      EmptyVariableException  Thrown if given action is not set
         */
-       function isActionValid ($actionName);
+       function isActionValid ($namespace, $actionName);
 
 }