Continued:
[core.git] / inc / main / classes / controller / class_BaseController.php
index 41bdfd0b0f4000a058b6c765571b5c147dc09ecd..080a5a5e9e4a6451973d54f0f4284ae396ff0664 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Controller;
+
+// Import framework stuff
+use CoreFramework\Object\BaseFrameworkSystem;
+
 /**
  * A generic controller class. You should extend this base class if you want to
  * write your own controller. You get the advantage that you can use the pre and
@@ -290,7 +296,5 @@ class BaseController extends BaseFrameworkSystem implements Registerable {
        public function executeShutdownFilters (Requestable $requestInstance, Responseable $responseInstance) {
                $this->executeFilters('shutdown', $requestInstance, $responseInstance);
        }
-}
 
-// [EOF]
-?>
+}