]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/actions/class_BaseAction.php
Continued a bit:
[core.git] / inc / main / classes / actions / class_BaseAction.php
index 59d76686d6489639b95a65a7ad145749e87ee8b5..331eba3a79bb1f7352968a53840a317cdf232017 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Action;
+
+// Import framework stuff
+use CoreFramework\Object\BaseFrameworkSystem;
+
 /**
  * A general action class. You shall extend this class if you are going to write
  * your own action classes even when this class has no real content in it. We
@@ -6,7 +12,7 @@
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -34,7 +40,5 @@ class BaseAction extends BaseFrameworkSystem {
                // Call parent constructor
                parent::__construct($className);
        }
-}
 
-// [EOF]
-?>
+}