Renamed Registry -> GenericRegistry to make it clear that this registry does
[core.git] / framework / main / interfaces / visitor / decorator / class_DecoratorVisitor.php
index 033d013f7821426eafbc21eb54e15746f5c84a2a..3d9617e9091729f5e058fe4c381869039983cc91 100644 (file)
@@ -1,9 +1,10 @@
 <?php
 // Own namespace
-namespace CoreFramework\Visitor\Decorator;
+namespace Org\Mxchange\CoreFramework\Visitor\Decorator;
 
 // Import framework stuff
-use CoreFramework\Visitor\Visitor;
+use Org\Mxchange\CoreFramework\Generic\BaseDecorator;
+use Org\Mxchange\CoreFramework\Visitor\Visitor;
 
 /**
  * An interface for the visitor implementation for decorators
@@ -33,6 +34,7 @@ interface DecoratorVisitor extends Visitor {
         *
         * @param       $decoratorInstance      A decorator instance
         * @return      void
+        * @todo        Find interface for this type-hint (only interface/array as type-hints rule)
         */
        function visitDecorator (BaseDecorator $decoratorInstance);