]> git.mxchange.org Git - core.git/blobdiff - inc/main/interfaces/actions/commands/class_Commandable.php
It is CoreFramework, not CoreFra*n*ework
[core.git] / inc / main / interfaces / actions / commands / class_Commandable.php
index 11f40bbd352d3b7c86b6c5148d4cd5194c4f2b14..064cd22135ec542fa70289b394e323f3aed03d96 100644 (file)
@@ -1,4 +1,12 @@
 <?php
+// Own namespace
+namespace CoreFramework\Command;
+
+// Import framework stuff
+use CoreFramework\Action\PerformableAction;
+use CoreFramework\Controller\Controller;
+use CoreFramework\Request\Requestable;
+
 /**
  * An interface for commands for the front controller
  *
@@ -30,7 +38,5 @@ interface Commandable extends PerformableAction {
         * @return      void
         */
        function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance);
-}
 
-// [EOF]
-?>
+}