]> git.mxchange.org Git - core.git/blobdiff - inc/main/interfaces/visitor/class_Visitable.php
Introduced namespaces:
[core.git] / inc / main / interfaces / visitor / class_Visitable.php
index faf76a2a967d5e27f1a967725ff53610a9a43871..cc7cc69913e01c3463cb2e993c032e767755f632 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Visitor;
+
+// Load framework stuff
+use CoreFramework\Generic\FrameworkInterface;
+
 /**
  * An interface for a visitable class that 'accepts' visitors
  *
@@ -29,7 +35,5 @@ interface Visitable extends FrameworkInterface {
         * @return      void
         */
        function accept (Visitor $visitorInstance);
-}
 
-// [EOF]
-?>
+}