]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/decorator/template/class_XmlRewriterTemplateDecorator.php
Continued:
[core.git] / framework / main / classes / decorator / template / class_XmlRewriterTemplateDecorator.php
index a8b18f09f83797d4e81dad540f946f875bcc5a3b..e1467317938be0aa7d1574dde5c49cc179a311cc 100644 (file)
@@ -1,12 +1,11 @@
 <?php
 // Own namespace
-namespace CoreFramework\Template\Xml;
+namespace Org\Mxchange\CoreFramework\Template\Xml;
 
 // Import framework stuff
-use CoreFramework\Generic\BaseDecorator;
-use CoreFramework\Manager\ManageableApplication;
-use CoreFramework\Response\Responseable;
-use CoreFramework\Template\CompileableTemplate;
+use Org\Mxchange\CoreFramework\Generic\BaseDecorator;
+use Org\Mxchange\CoreFramework\Response\Responseable;
+use Org\Mxchange\CoreFramework\Template\CompileableTemplate;
 
 /**
  * A decorator for XML template engines which rewrites the XML for compacting
@@ -274,12 +273,11 @@ class XmlRewriterTemplateDecorator extends BaseDecorator implements CompileableT
        /**
         * Assigns all the application data with template variables
         *
-        * @param       $applicationInstance    A manageable application instance
         * @return      void
         */
-       public function assignApplicationData (ManageableApplication $applicationInstance) {
+       public function assignApplicationData () {
                // Call the inner class' method
-               $this->getTemplateInstance()->assignApplicationData($applicationInstance);
+               $this->getTemplateInstance()->assignApplicationData();
        }
 
        /**