Fixed use-statement order
authorAlexander Ebert <ebert@woltlab.com>
Sun, 26 Jun 2016 15:27:16 +0000 (17:27 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Sun, 26 Jun 2016 15:27:16 +0000 (17:27 +0200)
wcfsetup/install/files/lib/system/html/input/HtmlInputProcessor.class.php
wcfsetup/install/files/lib/system/html/output/HtmlOutputProcessor.class.php

index 1c9f66f7c881aa006e27b7e695410defdbe0e723..72f89cfda24cff2b1467b5e8690c7627c815f3a6 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 namespace wcf\system\html\input;
 use wcf\system\bbcode\HtmlBBCodeParser;
-use wcf\system\html\AbstractHtmlProcessor;
 use wcf\system\html\input\filter\IHtmlInputFilter;
 use wcf\system\html\input\filter\MessageHtmlInputFilter;
 use wcf\system\html\input\node\HtmlInputNodeProcessor;
+use wcf\system\html\AbstractHtmlProcessor;
 use wcf\util\StringUtil;
 
 /**
index 8455f8c9a5112c5b9a1cfa2caf4d24c28a91ff34..23b63fbe5668e41b34a4803793f2b2ae65796e64 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 namespace wcf\system\html\output;
-use wcf\system\html\AbstractHtmlProcessor;
 use wcf\system\html\output\node\HtmlOutputNodeProcessor;
+use wcf\system\html\AbstractHtmlProcessor;
 
 /**
  * Processes stored HTML for final display.