]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/states/class_BaseState.php
renamed lib-local.php -> lib-lfdb.php because it really loads the "legendary"
[core.git] / inc / main / classes / states / class_BaseState.php
index 5fbce2cece1156970f7ee2cf185f9277a52f9787..c11ce464e03d3268fd21f5661140077dd79cb302 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\State;
+
+// Import framework stuff
+use CoreFramework\Object\BaseFrameworkSystem;
+
 /**
  * A general state class
  *
@@ -71,7 +77,5 @@ class BaseState extends BaseFrameworkSystem implements Stateable {
        public function executeState (Executor $executorInstance) {
                throw new UnsupportedOperationException(array($this, __FUNCTION__, $executorInstance), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
-}
 
-// [EOF]
-?>
+}