Continued:
[core.git] / inc / main / interfaces / visitor / decorator / class_DecoratorVisitor.php
index 0e7a3ff3b5f92858791cef184684c090cb281a4a..8b7cab4c96ff73f345b1fc7ea6209c997c3b2cfe 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+// Own namespace
+namespace CoreFramework\Visitor\Decorator;
+
 /**
  * An interface for the visitor implementation for decorators
  *
@@ -29,7 +32,5 @@ interface DecoratorVisitor extends Visitor {
         * @return      void
         */
        function visitDecorator (BaseDecorator $decoratorInstance);
-}
 
-// [EOF]
-?>
+}