]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/class_FrameworkArrayObject.php
Continued:
[core.git] / inc / main / classes / class_FrameworkArrayObject.php
index 223dd0229905e8c541db0ea4f34f6381ad2d8d2f..a6fa8bea9e22e0c1a1bf5ab45333349be608f046 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Array;
+
+// Import SPL stuff
+use \ArrayObject;
+
 /**
  * Class for saving arrays as an object. We need this little extension for
  * some common methods used in whole application. Please see below if you
@@ -46,7 +52,5 @@ class FrameworkArrayObject extends ArrayObject {
        public function __toString () {
                return $this->realClass;
        }
-}
 
-// [EOF]
-?>
+}