Fix indentations
authorMatthias Schmidt <gravatronics@live.com>
Fri, 20 May 2016 17:41:46 +0000 (19:41 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Fri, 20 May 2016 17:41:46 +0000 (19:41 +0200)
28 files changed:
wcfsetup/install/files/lib/acp/form/BoxAddForm.class.php
wcfsetup/install/files/lib/acp/form/MenuAddForm.class.php
wcfsetup/install/files/lib/acp/form/PageAddForm.class.php
wcfsetup/install/files/lib/acp/form/PageEditForm.class.php
wcfsetup/install/files/lib/data/ITitledLinkObject.class.php
wcfsetup/install/files/lib/data/bbcode/BBCode.class.php
wcfsetup/install/files/lib/data/box/Box.class.php
wcfsetup/install/files/lib/data/menu/MenuCache.class.php
wcfsetup/install/files/lib/data/page/Page.class.php
wcfsetup/install/files/lib/data/page/PageCache.class.php
wcfsetup/install/files/lib/data/user/follow/UserFollowAction.class.php
wcfsetup/install/files/lib/data/user/ignore/UserIgnoreAction.class.php
wcfsetup/install/files/lib/system/WCF.class.php
wcfsetup/install/files/lib/system/WCFACP.class.php
wcfsetup/install/files/lib/system/bbcode/HtmlBBCodeParser.class.php
wcfsetup/install/files/lib/system/box/IBoxController.class.php
wcfsetup/install/files/lib/system/box/TodaysBirthdaysBoxController.class.php
wcfsetup/install/files/lib/system/cache/builder/PageCacheBuilder.class.php
wcfsetup/install/files/lib/system/edit/IHistorySavingObject.class.php
wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacodeMarker.class.php
wcfsetup/install/files/lib/system/html/metacode/converter/IMetacodeConverter.class.php
wcfsetup/install/files/lib/system/package/plugin/BoxPackageInstallationPlugin.class.php
wcfsetup/install/files/lib/system/package/plugin/MenuPackageInstallationPlugin.class.php
wcfsetup/install/files/lib/system/page/PageLocationManager.class.php
wcfsetup/install/files/lib/system/request/ControllerMap.class.php
wcfsetup/install/files/lib/system/search/ISearchableObjectType.class.php
wcfsetup/install/files/lib/system/session/SessionHandler.class.php
wcfsetup/install/files/lib/util/DOMUtil.class.php

index 46206fee88f7453a3704f16efd7921528e47c474..ebcbb599435f89d6d9e1579c47886fe562d9b25c 100644 (file)
@@ -312,8 +312,8 @@ class BoxAddForm extends AbstractForm {
                if (!empty($this->pageIDs)) {
                        $conditionBuilder = new PreparedStatementConditionBuilder();
                        $conditionBuilder->add('pageID IN (?)', [$this->pageIDs]);
-                       $sql = "SELECT  pageID
-                               FROM    wcf".WCF_N."_page
+                       $sql = "SELECT  pageID
+                               FROM    wcf".WCF_N."_page
                                " . $conditionBuilder;
                        $statement = WCF::getDB()->prepareStatement($sql);
                        $statement->execute($conditionBuilder->getParameters());
index 285f8e0cb38c39a5807cabbe224322f74d15954d..7112dc66465f5394835fdf09e06391f0c2da7ecd 100644 (file)
@@ -127,8 +127,8 @@ class MenuAddForm extends AbstractForm {
                if (!empty($this->pageIDs)) {
                        $conditionBuilder = new PreparedStatementConditionBuilder();
                        $conditionBuilder->add('pageID IN (?)', [$this->pageIDs]);
-                       $sql = "SELECT  pageID
-                               FROM    wcf".WCF_N."_page
+                       $sql = "SELECT  pageID
+                               FROM    wcf".WCF_N."_page
                                " . $conditionBuilder;
                        $statement = WCF::getDB()->prepareStatement($sql);
                        $statement->execute($conditionBuilder->getParameters());
index 4342fe47fd0ed67556d03a8f6cd0bf3cf21b1ea3..02c04a8b080db04a612db82133258797b27485bb 100644 (file)
@@ -155,7 +155,7 @@ class PageAddForm extends AbstractForm {
        /**
         * Reads basic page parameters controlling type and i18n.
         * 
-        * @throws      IllegalLinkException
+        * @throws      IllegalLinkException
         */
        protected function readPageType() {
                if (!empty($_REQUEST['isMultilingual'])) $this->isMultilingual = 1;
@@ -229,7 +229,7 @@ class PageAddForm extends AbstractForm {
        /**
         * Validates page type.
         * 
-        * @throws      UserInputException
+        * @throws      UserInputException
         */
        protected function validatePageType() {
                if (!in_array($this->pageType, Page::$availablePageTypes) || $this->pageType == 'system') {
@@ -244,7 +244,7 @@ class PageAddForm extends AbstractForm {
        /**
         * Validates parent page id.
         * 
-        * @throws      UserInputException
+        * @throws      UserInputException
         */
        protected function validateParentPageID() {
                if ($this->parentPageID) {
@@ -258,7 +258,7 @@ class PageAddForm extends AbstractForm {
        /**
         * Validates package id.
         * 
-        * @throws      UserInputException
+        * @throws      UserInputException
         */
        protected function validateApplicationPackageID() {
                if (!isset($this->availableApplications[$this->applicationPackageID])) {
@@ -269,7 +269,7 @@ class PageAddForm extends AbstractForm {
        /**
         * Validates custom urls.
         * 
-        * @throws      UserInputException
+        * @throws      UserInputException
         */
        protected function validateCustomUrl() {
                foreach ($this->customURL as $type => $customURL) {
@@ -282,7 +282,7 @@ class PageAddForm extends AbstractForm {
        /**
         * Validates box ids.
         * 
-        * @throws      UserInputException
+        * @throws      UserInputException
         */
        protected function validateBoxIDs() {
                foreach ($this->boxIDs as $boxID) {
@@ -295,7 +295,7 @@ class PageAddForm extends AbstractForm {
        /**
         * Prepares box to page assignments
         * 
-        * @return      mixed[]
+        * @return      mixed[]
         */
        protected function getBoxToPage() {
                $boxToPage = [];
index 4b53f7cb67b70e64a65c589e1f093b438902cc3a..1be97d78b09767652eb6e538b5c5dfbe77618451 100644 (file)
@@ -39,7 +39,7 @@ class PageEditForm extends PageAddForm {
        /**
         * @inheritDoc
         * 
-        * @throws      IllegalLinkException
+        * @throws      IllegalLinkException
         */
        public function readParameters() {
                parent::readParameters();
index f2f069b3bbb32214e282c247b550a7671a169e9f..80d5a80771db4f92fb2ad2e88badb08e635c2754 100644 (file)
@@ -10,6 +10,6 @@ namespace wcf\data;
  * @package    com.woltlab.wcf
  * @subpackage data
  * @category   Community Framework
- * @since       2.2
+ * @since      2.2
  */
 interface ITitledLinkObject extends ILinkableObject, ITitledObject {}
index 1d34e2818d0ad0b9467d7d4eaeee6186c0d67794..3b9a61d1a3bf117022d6639f5bf67afa9099b0b5 100644 (file)
@@ -15,14 +15,14 @@ use wcf\system\WCF;
  * @package    com.woltlab.wcf
  * @subpackage data.bbcode
  * @category   Community Framework
- *
+ * 
  * @property-read      integer         $bbcodeID
  * @property-read      string          $bbcodeTag
  * @property-read      integer         $packageID
  * @property-read      string          $htmlOpen
  * @property-read      string          $htmlClose
  * @property-read      string          $className
- * @property-read       integer         $isBlockElement
+ * @property-read      integer         $isBlockElement
  * @property-read      string          $wysiwygIcon
  * @property-read      string          $buttonLabel
  * @property-read      integer         $isSourceCode
index 9e43fd1819d399fbcaf7e02996de138d423072f8..3edbc4163ba0aebe88d36dcb03b09cf4657182a6 100644 (file)
@@ -5,6 +5,7 @@ use wcf\data\media\ViewableMedia;
 use wcf\data\menu\Menu;
 use wcf\data\menu\MenuCache;
 use wcf\data\object\type\ObjectTypeCache;
+use wcf\system\box\IBoxController;
 use wcf\system\box\IConditionBoxController;
 use wcf\system\condition\ConditionHandler;
 use wcf\data\page\Page;
@@ -288,7 +289,7 @@ class Box extends DatabaseObject {
        /**
         * Returns the box controller.
         * 
-        * @return      \wcf\system\box\IBoxController
+        * @return      IBoxController
         */
        public function getController() {
                if ($this->controller === null && $this->objectTypeID) {
@@ -432,8 +433,8 @@ class Box extends DatabaseObject {
        /**
         * Returns the template name of this box.
         *
-        * @param       integer         $languageID
-        * @return      string
+        * @param       integer         $languageID
+        * @return      string
         */
        public function getTplName($languageID = null) {
                if ($this->boxType == 'tpl') {
@@ -450,13 +451,13 @@ class Box extends DatabaseObject {
        /**
         * Returns box to page assignments.
         * 
-        * @return      integer[]
+        * @return      integer[]
         */
        public function getPageIDs() {
                if ($this->pageIDs === null) {
-                       $sql = "SELECT  pageID
-                               FROM    wcf" . WCF_N . "_box_to_page
-                               WHERE   boxID = ?";
+                       $sql = "SELECT  pageID
+                               FROM    wcf" . WCF_N . "_box_to_page
+                               WHERE   boxID = ?";
                        $statement = WCF::getDB()->prepareStatement($sql);
                        $statement->execute([$this->boxID]);
                        
index 41e673641a235cc2223539f9632ea9de1caf3ccf..63c40528077cb3c971195553a2de81ee174821ec 100644 (file)
@@ -65,7 +65,7 @@ class MenuCache extends SingletonFactory {
        /**
         * Returns the main menu or null.
         * 
-        * @return      Menu|null       menu object
+        * @return      Menu|null       menu object
         */
        public function getMainMenu() {
                return $this->getMenuByID(MenuCacheBuilder::getInstance()->getData([], 'mainMenuID'));
index 4092791af6552da5e79a04931977b22e55dae13a..3b7c8bc8bb5558b98bd18e0eea04514e03a463bf 100644 (file)
@@ -236,17 +236,17 @@ class Page extends DatabaseObject implements ILinkableObject, ITitledObject {
                
                WCF::getDB()->beginTransaction();
                // unmark existing landing page
-               $sql = "UPDATE  wcf".WCF_N."_page
-                       SET     isLandingPage = ?";
+               $sql = "UPDATE  wcf".WCF_N."_page
+                       SET     isLandingPage = ?";
                $statement = WCF::getDB()->prepareStatement($sql);
                $statement->execute([
                        0
                ]);
                
                // set current page as landing page
-               $sql = "UPDATE  wcf".WCF_N."_page
-                       SET     isLandingPage = ?
-                       WHERE   pageID = ?";
+               $sql = "UPDATE  wcf".WCF_N."_page
+                       SET     isLandingPage = ?
+                       WHERE   pageID = ?";
                $statement = WCF::getDB()->prepareStatement($sql);
                $statement->execute([
                        1,
@@ -267,13 +267,13 @@ class Page extends DatabaseObject implements ILinkableObject, ITitledObject {
        /**
         * Returns box to page assignments.
         *
-        * @return      integer[]
+        * @return      integer[]
         */
        public function getBoxIDs() {
                if ($this->boxIDs === null) {
-                       $sql = "SELECT  boxID
-                               FROM    wcf" . WCF_N . "_box_to_page
-                               WHERE   pageID = ?";
+                       $sql = "SELECT  boxID
+                               FROM    wcf" . WCF_N . "_box_to_page
+                               WHERE   pageID = ?";
                        $statement = WCF::getDB()->prepareStatement($sql);
                        $statement->execute([$this->pageID]);
                        $this->boxIDs = $statement->fetchAll(\PDO::FETCH_COLUMN);
@@ -285,8 +285,8 @@ class Page extends DatabaseObject implements ILinkableObject, ITitledObject {
        /**
         * Returns the template name of this page.
         * 
-        * @param       integer         $languageID
-        * @return      string
+        * @param       integer         $languageID
+        * @return      string
         */
        public function getTplName($languageID = null) {
                if ($this->pageType == 'tpl') {
@@ -303,7 +303,7 @@ class Page extends DatabaseObject implements ILinkableObject, ITitledObject {
        /**
         * Returns the value of a generic phrase based upon a page's identifier.
         * 
-        * @return      string  generic title
+        * @return      string  generic title
         */
        protected function getGenericTitle() {
                return WCF::getLanguage()->get('wcf.page.' . $this->identifier);
index 76f6ab734f7e03cddf6a618e5d09694d0a14a816..1bf70af7fa21f7e97095e2cf734019d17d597a22 100644 (file)
@@ -13,7 +13,7 @@ use wcf\system\WCF;
  * @package    com.woltlab.wcf
  * @subpackage data.page
  * @category   Community Framework
- * @since       2.2
+ * @since      2.2
  */
 class PageCache extends SingletonFactory {
        /**
@@ -75,9 +75,9 @@ class PageCache extends SingletonFactory {
         * Returns the localized page title by page id, optionally retrieving the title
         * for given language id if it is a multilingual page.
         * 
-        * @param       integer         $pageID         page id
-        * @param       integer         $languageID     specific value by language id
-        * @return      string          localized page title
+        * @param       integer         $pageID         page id
+        * @param       integer         $languageID     specific value by language id
+        * @return      string  localized page title
         */
        public function getPageTitle($pageID, $languageID = null) {
                if (isset($this->cache['pageTitles'][$pageID])) {
@@ -100,7 +100,7 @@ class PageCache extends SingletonFactory {
        /**
         * Returns the global landing page.
         * 
-        * @return      Page
+        * @return      Page
         */
        public function getLandingPage() {
                return $this->cache['landingPage'];
index 999a0678e11341f9d398071f13600b009879a328..6a64c914a8776827649ba905d2aaad3a377ff739 100644 (file)
@@ -46,9 +46,9 @@ class UserFollowAction extends AbstractDatabaseObjectAction implements IGroupedU
                }
                
                // check if current user is ignored by target user
-               $sql = "SELECT  ignoreID
-                       FROM    wcf".WCF_N."_user_ignore
-                       WHERE   userID = ?
+               $sql = "SELECT  ignoreID
+                       FROM    wcf".WCF_N."_user_ignore
+                       WHERE   userID = ?
                                AND ignoreUserID = ?";
                $statement = WCF::getDB()->prepareStatement($sql);
                $statement->execute([
index db49a382e1a3583c3b9416f40dd761c183d3ab64..c8f08fd233b12ac0f39ef05558627fc68f337a45 100644 (file)
@@ -56,9 +56,9 @@ class UserIgnoreAction extends AbstractDatabaseObjectAction {
                        UserStorageHandler::getInstance()->reset([WCF::getUser()->userID], 'ignoredUserIDs');
                        
                        // check if target user is following the current user
-                       $sql = "SELECT  *
-                               FROM    wcf".WCF_N."_user_follow
-                               WHERE   userID = ?
+                       $sql = "SELECT  *
+                               FROM    wcf".WCF_N."_user_follow
+                               WHERE   userID = ?
                                        AND followUserID = ?";
                        $statement = WCF::getDB()->prepareStatement($sql);
                        $statement->execute([
index f0a637df0ff73814f68ab386428ee99ce3f21062..d0bc4c7b955145af6fa85d15e48c5a0fcb281bdd 100644 (file)
@@ -939,7 +939,7 @@ class WCF {
        /**
         * Returns true if currently active request represents the landing page.
         * 
-        * @return      boolean
+        * @return      boolean
         */
        public static function isLandingPage() {
                return RequestHandler::getInstance()->getActiveRequest()->isLandingPage();
index 38242873d15d8e236f997e154a982f10fcf40250..9a8c333c9e148fa267278bb34db82c15f9a1f59e 100644 (file)
@@ -73,8 +73,8 @@ class WCFACP extends WCF {
        /**
         * Returns the main menu object.
         * 
-        * @return      Menu|null       menu object
-        * @since       2.2
+        * @return      Menu|null       menu object
+        * @since       2.2
         */
        public function getFrontendMenu() {
                return MenuCache::getInstance()->getMainMenu();
index a6f9b239c32d8d4ac37a49882404de55bc909be7..d057c1128735ae10f8c3253d469de5729ab3f940 100644 (file)
@@ -13,13 +13,13 @@ use wcf\util\StringUtil;
  * are <iframe> or other embedded media that is allowed as a result of a bbcode, but
  * not allowed to be directly provided by a user. 
  * 
- * @author      Alexander Ebert
- * @copyright   2001-2016 WoltLab GmbH
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package     com.woltlab.wcf
- * @subpackage  system.bbcode
- * @category    Community Framework
- * @since       2.2
+ * @author     Alexander Ebert
+ * @copyright  2001-2016 WoltLab GmbH
+ * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package    com.woltlab.wcf
+ * @subpackage system.bbcode
+ * @category   Community Framework
+ * @since      2.2
  */
 class HtmlBBCodeParser extends BBCodeParser {
        /**
@@ -144,9 +144,9 @@ class HtmlBBCodeParser extends BBCodeParser {
        /**
         * Builds the bbcode output.
         * 
-        * @param       string          $name           bbcode identifier
-        * @param       array           $attributes     list of attributes
-        * @return      string          parsed bbcode
+        * @param       string          $name           bbcode identifier
+        * @param       array           $attributes     list of attributes
+        * @return      string          parsed bbcode
         */
        public function getHtmlOutput($name, array $attributes) {
                if (isset($this->bbcodes[$name])) {
@@ -170,10 +170,10 @@ class HtmlBBCodeParser extends BBCodeParser {
        /**
         * Builds a plain bbcode string, used for unknown bbcodes.
         * 
-        * @param       string          $name                   bbcode identifier
-        * @param       array           $attributes             list of attributes
-        * @param       boolean         $openingTagOnly         only render the opening tag
-        * @return      string
+        * @param       string          $name                   bbcode identifier
+        * @param       array           $attributes             list of attributes
+        * @param       boolean         $openingTagOnly         only render the opening tag
+        * @return      string
         */
        public function buildBBCodeTag($name, $attributes, $openingTagOnly = false) {
                if (!empty($attributes)) {
@@ -198,7 +198,7 @@ class HtmlBBCodeParser extends BBCodeParser {
        /**
         * Returns the list of bbcodes that represent block elements.
         * 
-        * @return      string[]        list of bbcode block elements
+        * @return      string[]        list of bbcode block elements
         */
        public function getBlockBBCodes() {
                $bbcodes = [];
@@ -214,7 +214,7 @@ class HtmlBBCodeParser extends BBCodeParser {
        /**
         * Returns the list of bbcodes that represent source code elements.
         * 
-        * @return      string[]        list of bbcode source code elements
+        * @return      string[]        list of bbcode source code elements
         */
        public function getSourceBBCodes() {
                $bbcodes = [];
@@ -230,10 +230,10 @@ class HtmlBBCodeParser extends BBCodeParser {
        /**
         * Compiles tag fragments into the custom HTML element.
         * 
-        * @param       array   $openingTag     opening tag data
-        * @param       string  $content        content between opening and closing tag
-        * @param       array   $closingTag     closing tag data
-        * @return      string  custom HTML element
+        * @param       array   $openingTag     opening tag data
+        * @param       string  $content        content between opening and closing tag
+        * @param       array   $closingTag     closing tag data
+        * @return      string  custom HTML element
         */
        protected function compileTag(array $openingTag, $content, array $closingTag) {
                return $this->buildOpeningTag($openingTag) . $content . $this->buildClosingTag($closingTag);
@@ -283,8 +283,8 @@ class HtmlBBCodeParser extends BBCodeParser {
        /**
         * Returns true if provided name is a valid bbcode identifier.
         * 
-        * @param       string          $name           bbcode identifier
-        * @return      boolean         true if provided name is a valid bbcode identifier
+        * @param       string          $name           bbcode identifier
+        * @return      boolean         true if provided name is a valid bbcode identifier
         */
        protected function isValidBBCodeName($name) {
                return preg_match($this->validBBCodePattern, $name) === 1;
index 577838f3e489b0abb3a96ba833839bbe73f99911..80fea9630e5715e8a699e567a0fc98d7c612168d 100644 (file)
@@ -59,7 +59,7 @@ interface IBoxController {
        /**
         * Returns the database object of this box.
         * 
-        * @return      Box
+        * @return      Box
         */
        public function getBox();
        
index 43bb4eb7597633a46984838bafe3cc1b231272ec..8cba25e9673e207d458d1d6991311388c7251aed 100644 (file)
@@ -76,7 +76,7 @@ class TodaysBirthdaysBoxController extends AbstractBoxController {
        /**
         * Filters given user ids.
         * 
-        * @param       integer[]       $userIDs
+        * @param       integer[]       $userIDs
         */
        protected function filterUserIDs(&$userIDs) {
                // does nothing, can be overwritten by child classes
index 6eaedf88e4bd6dab3fe3fb33fd6d4dc46d7456fb..09f683bc9d99b49ee5df4ae4c7d825d0f86644b2 100644 (file)
@@ -13,7 +13,7 @@ use wcf\system\WCF;
  * @package    com.woltlab.wcf
  * @subpackage system.cache.builder
  * @category   Community Framework
- * @since       2.2
+ * @since      2.2
  */
 class PageCacheBuilder extends AbstractCacheBuilder {
        /**
@@ -33,8 +33,8 @@ class PageCacheBuilder extends AbstractCacheBuilder {
                $data['pages'] = $pageList->getObjects();
                
                // get page titles
-               $sql = "SELECT  pageID, languageID, title
-                       FROM    wcf".WCF_N."_page_content";
+               $sql = "SELECT  pageID, languageID, title
+                       FROM    wcf".WCF_N."_page_content";
                $statement = WCF::getDB()->prepareStatement($sql);
                $statement->execute();
                while ($row = $statement->fetchArray()) {
index d995502e2d8c13d137697557a1482b15c5b9ab34..6046943a56e50398ab000b755eb26f7cd1e2474a 100644 (file)
@@ -32,7 +32,7 @@ interface IHistorySavingObject extends IDatabaseObjectProcessor, IUserContent {
        /**
         * Reverts the object's text to the given EditHistoryEntry.
         * 
-        * @param       EditHistoryEntry        $edit
+        * @param       EditHistoryEntry        $edit
         */
        public function revertVersion(EditHistoryEntry $edit);
        
index 9e2762194c380004539e8127fc195bf0ae7bd63d..8c46dd84ef3dc7b98e9cb8ec8df3a4bfb9a7795a 100644 (file)
@@ -10,24 +10,24 @@ use wcf\util\StringUtil;
  * Transforms bbcode markers into the custom HTML element `<woltlab-metacode>`. This process
  * outputs well-formed markup with proper element nesting.
  * 
- * @author      Alexander Ebert
- * @copyright   2001-2016 WoltLab GmbH
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package     com.woltlab.wcf
- * @subpackage  system.html.input.node
- * @category    Community Framework
- * @since       2.2
+ * @author     Alexander Ebert
+ * @copyright  2001-2016 WoltLab GmbH
+ * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package    com.woltlab.wcf
+ * @subpackage system.html.input.node
+ * @category   Community Framework
+ * @since      2.2
  */
 class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * list of bbcodes that represent block elements
-        * @var string[]
+        * @var string[]
         */
        public $blockElements = [];
        
        /**
         * list of bbcodes that represent source code elements
-        * @var string[]
+        * @var string[]
         */
        public $sourceElements = [];
        
@@ -66,8 +66,8 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * Transforms bbcode markers inside source code elements into their plain bbcode representation.
         * 
-        * @param       array           $pairs          list of bbcode marker pairs
-        * @return      array           filtered list of bbcode marker pairs
+        * @param       array           $pairs          list of bbcode marker pairs
+        * @return      array           filtered list of bbcode marker pairs
         */
        protected function revertMarkerInsideCodeBlocks(array $pairs) {
                $isInsideCode = function(\DOMElement $element) {
@@ -103,8 +103,8 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * Builds the list of paired bbcode markers.
         * 
-        * @param       \DOMElement[]           $elements       list of marker elements
-        * @return      array                   list of paired bbcode markers
+        * @param       \DOMElement[]   $elements       list of marker elements
+        * @return      array           list of paired bbcode markers
         */
        protected function buildPairs(array $elements) {
                $pairs = [];
@@ -139,8 +139,8 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * Validates bbcode marker pairs to include both an opening and closing element.
         * 
-        * @param       array           $pairs          list of paired bbcode markers
-        * @return      array           filtered list of paired bbcode markers
+        * @param       array           $pairs          list of paired bbcode markers
+        * @return      array           filtered list of paired bbcode markers
         */
        protected function validatePairs(array $pairs) {
                foreach ($pairs as $uuid => $data) {
@@ -163,8 +163,8 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * Groups bbcode marker pairs by their common bbcode identifier.
         * 
-        * @param       array           $pairs          list of paired bbcode markers
-        * @return      array           grouped list of bbcode marker pairs
+        * @param       array           $pairs          list of paired bbcode markers
+        * @return      array           grouped list of bbcode marker pairs
         */
        protected function groupPairsByName(array $pairs) {
                $groups = [];
@@ -188,7 +188,7 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * Converts bbcode marker pairs into block- or inline-elements.
         * 
-        * @param       array           $groups         grouped list of bbcode marker pairs
+        * @param       array           $groups         grouped list of bbcode marker pairs
         */
        protected function convertGroups(array $groups) {
                // process source elements first
@@ -239,10 +239,10 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * Converts a block-level bbcode marker pair.
         * 
-        * @param       string          $name           bbcode identifier
-        * @param       \DOMElement     $start          start node
-        * @param       \DOMElement     $end            end node
-        * @param       string          $attributes     encoded attribute string
+        * @param       string          $name           bbcode identifier
+        * @param       \DOMElement     $start          start node
+        * @param       \DOMElement     $end            end node
+        * @param       string          $attributes     encoded attribute string
         */
        protected function convertBlockElement($name, $start, $end, $attributes) {
                // we need to ensure proper nesting, block elements are not allowed to
@@ -275,10 +275,10 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * Converts an inline bbcode marker pair.
         * 
-        * @param       string          $name           bbcode identifier
-        * @param       \DOMElement     $start          start node
-        * @param       \DOMElement     $end            end node
-        * @param       string          $attributes     encoded attribute string
+        * @param       string          $name           bbcode identifier
+        * @param       \DOMElement     $start          start node
+        * @param       \DOMElement     $end            end node
+        * @param       string          $attributes     encoded attribute string
         */
        protected function convertInlineElement($name, $start, $end, $attributes) {
                if ($start->parentNode === $end->parentNode) {
@@ -324,11 +324,11 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
         * node and all previous siblings will be added to the element. The reverse takes place if
         * `$endNode` is `null`.
         * 
-        * @param       string                  $name           element tag name
-        * @param       string                  $attributes     encoded attribute string
-        * @param       \DOMElement|null        $startNode      first node to wrap
-        * @param       \DOMElement|null        $endNode        last node to wrap
-        * @return      \DOMElement             newly created element
+        * @param       string                  $name           element tag name
+        * @param       string                  $attributes     encoded attribute string
+        * @param       \DOMElement|null        $startNode      first node to wrap
+        * @param       \DOMElement|null        $endNode        last node to wrap
+        * @return      \DOMElement             newly created element
         */
        protected function wrapContent($name, $attributes, $startNode, $endNode) {
                if ($startNode === null && $endNode === null) {
@@ -368,8 +368,8 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
        /**
         * Returns true if provided node is a block element.
         * 
-        * @param       \DOMNode        $node           node
-        * @return      boolean         true for certain block elements
+        * @param       \DOMNode        $node           node
+        * @return      boolean         true for certain block elements
         */
        protected function isBlockElement(\DOMNode $node) {
                switch ($node->nodeName) {
@@ -396,7 +396,7 @@ class HtmlInputNodeWoltlabMetacodeMarker extends AbstractHtmlNode {
         * Converts a bbcode marker pair into their plain bbcode representation. This method is used
         * to convert markers inside source code elements.
         * 
-        * @param       array           $pair           bbcode marker pair
+        * @param       array           $pair           bbcode marker pair
         */
        protected function convertToBBCode(array $pair) {
                /** @var \DOMElement $start */
index 23b34d117bf3cd2dbbc606b3d29808be8cbe8376..5d94515178d4f89a4b827cafcf36d44b1a571188 100644 (file)
@@ -9,17 +9,17 @@ interface IMetacodeConverter {
         * 
         * The fragment must be inserted into your returned DOM element.
         * 
-        * @param       \DOMDocumentFragment    $fragment       fragment containing all child nodes, must be appended to returned element
-        * @param       array                   $attributes     list of attributes
-        * @return      \DOMElement             new DOM element
+        * @param       \DOMDocumentFragment    $fragment       fragment containing all child nodes, must be appended to returned element
+        * @param       array                   $attributes     list of attributes
+        * @return      \DOMElement             new DOM element
         */
        public function convert(\DOMDocumentFragment $fragment, array $attributes);
        
        /**
         * Validates attributes before any DOM modification occurs.
         * 
-        * @param       array           $attributes     list of attributes
-        * @return      boolean         false if attributes did not match the converter's expectation
+        * @param       array           $attributes     list of attributes
+        * @return      boolean         false if attributes did not match the converter's expectation
         */
        public function validateAttributes(array $attributes);
 }
index c23ef6d2341783d7b1a4e541ae2ccd969ed9aadf..6a1506f6e002fafdf27fe33ef566219b7b04caa8 100644 (file)
@@ -243,9 +243,9 @@ class BoxPackageInstallationPlugin extends AbstractXMLPackageInstallationPlugin
         * @return      integer
         */
        protected function getItemOrder($position) {
-               $sql = "SELECT  MAX(showOrder) AS showOrder
+               $sql = "SELECT  MAX(showOrder) AS showOrder
                        FROM    wcf".WCF_N."_box
-                       WHERE   position = ?";
+                       WHERE   position = ?";
                $statement = WCF::getDB()->prepareStatement($sql, 1);
                $statement->execute([$position]);
                
@@ -327,10 +327,10 @@ class BoxPackageInstallationPlugin extends AbstractXMLPackageInstallationPlugin
                }
                
                // save visibility exceptions
-               $sql = "DELETE FROM     wcf".WCF_N."_box_to_page
-                       WHERE           boxID = ?";
+               $sql = "DELETE FROM     wcf".WCF_N."_box_to_page
+                       WHERE           boxID = ?";
                $deleteStatement = WCF::getDB()->prepareStatement($sql);
-               $sql = "INSERT IGNORE   wcf".WCF_N."_box_to_page
+               $sql = "INSERT IGNORE   wcf".WCF_N."_box_to_page
                                        (boxID, pageID, visible)
                        VALUES          (?, ?, ?)";
                $insertStatement = WCF::getDB()->prepareStatement($sql);
@@ -341,8 +341,8 @@ class BoxPackageInstallationPlugin extends AbstractXMLPackageInstallationPlugin
                        // get page ids
                        $conditionBuilder = new PreparedStatementConditionBuilder();
                        $conditionBuilder->add('identifier IN (?)', [$pages]);
-                       $sql = "SELECT  pageID
-                               FROM    wcf".WCF_N."_page
+                       $sql = "SELECT  pageID
+                               FROM    wcf".WCF_N."_page
                                ".$conditionBuilder;
                        $statement = WCF::getDB()->prepareStatement($sql);
                        $statement->execute($conditionBuilder->getParameters());
index 204f34189d3ce00bec1f14086608128a324fead4..69f9f2c78e47eda955b60218990ff8d99a0364e6 100644 (file)
@@ -217,12 +217,12 @@ class MenuPackageInstallationPlugin extends AbstractXMLPackageInstallationPlugin
                }
                
                // handle visibility exceptions
-               $sql = "DELETE FROM     wcf".WCF_N."_box_to_page
-                       WHERE           boxID = ?";
+               $sql = "DELETE FROM     wcf".WCF_N."_box_to_page
+                       WHERE           boxID = ?";
                $deleteStatement = WCF::getDB()->prepareStatement($sql);
-               $sql = "INSERT IGNORE   wcf".WCF_N."_box_to_page
+               $sql = "INSERT IGNORE   wcf".WCF_N."_box_to_page
                                        (boxID, pageID, visible)
-                       VALUES          (?, ?, ?)";
+                       VALUES          (?, ?, ?)";
                $insertStatement = WCF::getDB()->prepareStatement($sql);
                foreach ($this->boxData as $identifier => $data) {
                        // connect box with menu
@@ -253,8 +253,8 @@ class MenuPackageInstallationPlugin extends AbstractXMLPackageInstallationPlugin
                                // get page ids
                                $conditionBuilder = new PreparedStatementConditionBuilder();
                                $conditionBuilder->add('identifier IN (?)', [$this->visibilityExceptions[$identifier]]);
-                               $sql = "SELECT  pageID
-                                       FROM    wcf" . WCF_N . "_page
+                               $sql = "SELECT  pageID
+                                       FROM    wcf" . WCF_N . "_page
                                        " . $conditionBuilder;
                                $statement = WCF::getDB()->prepareStatement($sql);
                                $statement->execute($conditionBuilder->getParameters());
index 00fa03421390884d8e93b82237040b248100b54b..2bd7323a6c26786d891c8e07078a1da0f6c7dfb1 100644 (file)
@@ -15,7 +15,7 @@ use wcf\system\SingletonFactory;
  * @package    com.woltlab.wcf
  * @subpackage system.page
  * @category   Community Framework
- * @since       2.2
+ * @since      2.2
  */
 class PageLocationManager extends SingletonFactory {
        /**
@@ -66,9 +66,9 @@ class PageLocationManager extends SingletonFactory {
         * Appends a parent location to the stack, the later it is added the lower
         * is its assumed priority when matching suitable menu items.
         * 
-        * @param       string                  $identifier             internal page identifier
-        * @param       integer                 $pageObjectID           page object id
-        * @param       ITitledLinkObject       $locationObject         optional label for breadcrumbs usage
+        * @param       string                  $identifier             internal page identifier
+        * @param       integer                 $pageObjectID           page object id
+        * @param       ITitledLinkObject       $locationObject         optional label for breadcrumbs usage
         * @throws      SystemException
         */
        public function addParentLocation($identifier, $pageObjectID = 0, ITitledLinkObject $locationObject = null) {
index 9aaf799a4d4fb25a93e4ae575eec02deb0610009..eb2d185586078ebd1bce0c70bfaeed13dcd14925 100644 (file)
@@ -57,7 +57,7 @@ class ControllerMap extends SingletonFactory {
         * @param       string          $application    application identifier
         * @param       string          $controller     url controller
         * @param       boolean         $isAcpRequest   true if this is an ACP request
-        * @return      mixed           array containing className, controller and pageType or a string containing the controller name for aliased controllers
+        * @return      mixed           array containing className, controller and pageType or a string containing the controller name for aliased controllers
         * @throws      SystemException
         */
        public function resolve($application, $controller, $isAcpRequest) {
@@ -250,9 +250,9 @@ class ControllerMap extends SingletonFactory {
        /**
         * Returns true if currently active request represents the landing page.
         * 
-        * @param       string[]        $classData
-        * @param       array           $metaData
-        * @return      boolean
+        * @param       string[]        $classData
+        * @param       array           $metaData
+        * @return      boolean
         */
        public function isLandingPage(array $classData, array $metaData) {
                if ($classData['className'] !== $this->landingPages['wcf'][2]) {
index 7d0ad932ffc64ebb37a492d1cdf3ec0d84d6edbd..2dc2650cd66ad381c53bea202788b9a90be297be 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 namespace wcf\system\search;
+use wcf\data\search\ISearchResultObject;
 use wcf\form\IForm;
 use wcf\system\database\util\PreparedStatementConditionBuilder;
 
@@ -26,14 +27,14 @@ interface ISearchableObjectType {
         * Returns the object with the given object id.
         * 
         * @param       integer         $objectID
-        * @return      \wcf\data\search\ISearchResultObject
+        * @return      ISearchResultObject
         */
        public function getObject($objectID);
        
        /**
         * Shows the form part of this object type.
         * 
-        * @param       \wcf\form\IForm         $form           instance of the form class where the search has taken place
+        * @param       IForm           $form           instance of the form class where the search has taken place
         */
        public function show(IForm $form = null);
        
@@ -47,8 +48,8 @@ interface ISearchableObjectType {
        /**
         * Returns the search conditions of this message type.
         * 
-        * @param       \wcf\form\IForm                 $form
-        * @return      \wcf\system\database\util\PreparedStatementConditionBuilder
+        * @param       IForm           $form
+        * @return      PreparedStatementConditionBuilder
         */
        public function getConditions(IForm $form = null);
        
@@ -119,9 +120,9 @@ interface ISearchableObjectType {
         * Replaces the outer SQL query with a custom version. Querying the search index requires the
         * placeholder {WCF_SEARCH_INNER_JOIN} within an empty INNER JOIN() statement.
         * 
-        * @param       string                                                          $q
-        * @param       \wcf\system\database\util\PreparedStatementConditionBuilder     $searchIndexConditions
-        * @param       \wcf\system\database\util\PreparedStatementConditionBuilder     $additionalConditions
+        * @param       string                                  $q
+        * @param       PreparedStatementConditionBuilder       $searchIndexConditions
+        * @param       PreparedStatementConditionBuilder       $additionalConditions
         * @return      string
         */
        public function getOuterSQLQuery($q, PreparedStatementConditionBuilder &$searchIndexConditions = null, PreparedStatementConditionBuilder &$additionalConditions = null);
@@ -129,7 +130,7 @@ interface ISearchableObjectType {
        /**
         * Sets the location in menu/breadcrumbs.
         * 
-        * @since       2.2
+        * @since       2.2
         */
        public function setLocation();
        
index 24c7836dca6ef2241abbb9c7a8a6d25838934b20..73f86bf02f68731b5d901663cf584aebf2fdbd72 100644 (file)
@@ -176,7 +176,7 @@ class SessionHandler extends SingletonFactory {
        /**
         * Suffix used to tell ACP and frontend cookies apart
         * 
-        * @param       string  $cookieSuffix   cookie suffix
+        * @param       string  $cookieSuffix   cookie suffix
         */
        public function setCookieSuffix($cookieSuffix) {
                $this->cookieSuffix = $cookieSuffix;
index 8d90ed795a0ca917ac98db194a1f97a1e52b9fb8..dddaee7f25610ab11cd4848dc501e61a280637de 100644 (file)
@@ -5,19 +5,19 @@ use wcf\system\exception\SystemException;
 /**
  * Provides helper methods to work with PHP's DOM implementation.
  * 
- * @author      Alexander Ebert
- * @copyright   2001-2016 WoltLab GmbH
- * @license     GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package     com.woltlab.wcf
- * @subpackage  util
- * @category    Community Framework
+ * @author     Alexander Ebert
+ * @copyright  2001-2016 WoltLab GmbH
+ * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package    com.woltlab.wcf
+ * @subpackage util
+ * @category   Community Framework
  */
 final class DOMUtil {
        /**
         * Moves all child nodes from given element into a document fragment.
         * 
-        * @param       \DOMElement     $element        element
-        * @return      \DOMDocumentFragment            document fragment containing all child nodes from `$element`
+        * @param       \DOMElement     $element        element
+        * @return      \DOMDocumentFragment            document fragment containing all child nodes from `$element`
         */
        public static function childNodesToFragment(\DOMElement $element) {
                $fragment = $element->ownerDocument->createDocumentFragment();
@@ -32,9 +32,9 @@ final class DOMUtil {
        /**
         * Returns true if `$ancestor` contains the node `$node`.
         * 
-        * @param       \DOMNode        $ancestor       ancestor node
-        * @param       \DOMNode        $node           node
-        * @return      boolean         true if `$ancestor` contains the node `$node`
+        * @param       \DOMNode        $ancestor       ancestor node
+        * @param       \DOMNode        $node           node
+        * @return      boolean         true if `$ancestor` contains the node `$node`
         */
        public static function contains(\DOMNode $ancestor, \DOMNode $node) {
                // nodes cannot contain themselves
@@ -60,9 +60,9 @@ final class DOMUtil {
        /**
         * Returns the common ancestor of both nodes.
         * 
-        * @param       \DOMNode                $node1          first node
-        * @param       \DOMNode                $node2          second node
-        * @return      \DOMElement|null        common ancestor or null
+        * @param       \DOMNode                $node1          first node
+        * @param       \DOMNode                $node2          second node
+        * @return      \DOMElement|null        common ancestor or null
         */
        public static function getCommonAncestor(\DOMNode $node1, \DOMNode $node2) {
                // abort if both elements share a common element or are both direct descendants
@@ -90,9 +90,9 @@ final class DOMUtil {
         * Returns the immediate parent element before provided ancenstor element. Returns null if
         * the ancestor element is the direct parent of provided node.
         * 
-        * @param       \DOMNode                $node           node
-        * @param       \DOMElement             $ancestor       ancestor node
-        * @return      \DOMElement|null        immediate parent element before ancestor element
+        * @param       \DOMNode                $node           node
+        * @param       \DOMElement             $ancestor       ancestor node
+        * @return      \DOMElement|null        immediate parent element before ancestor element
         */
        public static function getParentBefore(\DOMNode $node, \DOMElement $ancestor) {
                if ($node->parentNode === $ancestor) {
@@ -112,8 +112,8 @@ final class DOMUtil {
        /**
         * Returns the parent node of given node.
         *
-        * @param       \DOMNode        $node           node
-        * @return      \DOMNode        parent node, can be `\DOMElement` or `\DOMDocument`
+        * @param       \DOMNode        $node           node
+        * @return      \DOMNode        parent node, can be `\DOMElement` or `\DOMDocument`
         */
        public static function getParentNode(\DOMNode $node) {
                return ($node->parentNode) ?: $node->ownerDocument;
@@ -122,9 +122,9 @@ final class DOMUtil {
        /**
         * Returns all ancestors nodes for given node.
         * 
-        * @param       \DOMNode        $node           node
-        * @param       boolean         $reverseOrder   reversing the order causes the most top ancestor to appear first
-        * @return      \DOMElement[]   list of ancestor nodes
+        * @param       \DOMNode        $node           node
+        * @param       boolean         $reverseOrder   reversing the order causes the most top ancestor to appear first
+        * @return      \DOMElement[]   list of ancestor nodes
         */
        public static function getParents(\DOMNode $node, $reverseOrder = false) {
                $parents = [];
@@ -140,9 +140,9 @@ final class DOMUtil {
        /**
         * Determines the relative position of two nodes to each other.
         * 
-        * @param       \DOMNode        $node1          first node
-        * @param       \DOMNode        $node2          second node
-        * @return      string
+        * @param       \DOMNode        $node1          first node
+        * @param       \DOMNode        $node2          second node
+        * @return      string
         */
        public static function getRelativePosition(\DOMNode $node1, \DOMNode $node2) {
                if ($node1->ownerDocument !== $node2->ownerDocument) {
@@ -182,8 +182,8 @@ final class DOMUtil {
        /**
         * Inserts given DOM node after the reference node.
         * 
-        * @param       \DOMNode        $node           node
-        * @param       \DOMNode        $refNode        reference node
+        * @param       \DOMNode        $node           node
+        * @param       \DOMNode        $refNode        reference node
         */
        public static function insertAfter(\DOMNode $node, \DOMNode $refNode) {
                if ($refNode->nextSibling) {
@@ -197,8 +197,8 @@ final class DOMUtil {
        /**
         * Inserts given node before the reference node.
         * 
-        * @param       \DOMNode        $node           node
-        * @param       \DOMNode        $refNode        reference node
+        * @param       \DOMNode        $node           node
+        * @param       \DOMNode        $refNode        reference node
         */
        public static function insertBefore(\DOMNode $node, \DOMNode $refNode) {
                self::getParentNode($refNode)->insertBefore($node, $refNode);
@@ -207,8 +207,8 @@ final class DOMUtil {
        /**
         * Returns true if this node is empty.
         * 
-        * @param       \DOMNode        $node           node
-        * @return      boolean         true if node is empty
+        * @param       \DOMNode        $node           node
+        * @return      boolean         true if node is empty
         */
        public static function isEmpty(\DOMNode $node) {
                if ($node->nodeType === XML_TEXT_NODE) {
@@ -236,9 +236,9 @@ final class DOMUtil {
        /**
         * Returns true if given node is the first node of its given ancestor.
         * 
-        * @param       \DOMNode        $node           node
-        * @param       \DOMElement     $ancestor       ancestor element
-        * @return      boolean         true if `$node` is the first node of its given ancestor
+        * @param       \DOMNode        $node           node
+        * @param       \DOMElement     $ancestor       ancestor element
+        * @return      boolean         true if `$node` is the first node of its given ancestor
         */
        public static function isFirstNode(\DOMNode $node, \DOMElement $ancestor) {
                if ($node->previousSibling === null) {
@@ -259,9 +259,9 @@ final class DOMUtil {
        /**
         * Returns true if given node is the last node of its given ancestor.
         * 
-        * @param       \DOMNode        $node           node
-        * @param       \DOMElement     $ancestor       ancestor element
-        * @return      boolean         true if `$node` is the last node of its given ancestor
+        * @param       \DOMNode        $node           node
+        * @param       \DOMElement     $ancestor       ancestor element
+        * @return      boolean         true if `$node` is the last node of its given ancestor
         */
        public static function isLastNode(\DOMNode $node, \DOMElement $ancestor) {
                if ($node->nextSibling === null) {
@@ -286,8 +286,8 @@ final class DOMUtil {
         * Returns true if provided element is a void element. Void elements are elements
         * that neither contain content nor have a closing tag, such as `<br>`.
         * 
-        * @param       \DOMElement     $element        element
-        * @return      boolean         true if provided element is a void element
+        * @param       \DOMElement     $element        element
+        * @return      boolean true if provided element is a void element
         */
        public static function isVoidElement(\DOMElement $element) {
                if (preg_match('~^(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)$~', $element->nodeName)) {
@@ -302,9 +302,9 @@ final class DOMUtil {
         * in which nodes will be considered for moving is determined by the logical position
         * of `$lastElement`.
         * 
-        * @param       \DOMElement     $container              destination element
-        * @param       \DOMElement     $lastElement            last element to move
-        * @param       \DOMElement     $commonAncestor         common ancestor of `$container` and `$lastElement`
+        * @param       \DOMElement     $container              destination element
+        * @param       \DOMElement     $lastElement            last element to move
+        * @param       \DOMElement     $commonAncestor         common ancestor of `$container` and `$lastElement`
         */
        public static function moveNodesInto(\DOMElement $container, \DOMElement $lastElement, \DOMElement $commonAncestor) {
                if (!self::contains($commonAncestor, $container)) {
@@ -345,8 +345,8 @@ final class DOMUtil {
        /**
         * Prepends a node to provided element.
         * 
-        * @param       \DOMNode        $node           node
-        * @param       \DOMElement     $element        target element
+        * @param       \DOMNode        $node           node
+        * @param       \DOMElement     $element        target element
         */
        public static function prepend(\DOMNode $node, \DOMElement $element) {
                if ($element->firstChild === null) {
@@ -360,8 +360,8 @@ final class DOMUtil {
        /**
         * Removes a node, optionally preserves the child nodes if `$node` is an element.
         * 
-        * @param       \DOMNode        $node                   target node
-        * @param       boolean         $preserveChildNodes     preserve child nodes, only supported for elements
+        * @param       \DOMNode        $node                   target node
+        * @param       boolean         $preserveChildNodes     preserve child nodes, only supported for elements
         */
        public static function removeNode(\DOMNode $node, $preserveChildNodes = false) {
                if ($preserveChildNodes) {
@@ -380,9 +380,9 @@ final class DOMUtil {
        /**
         * Replaces a DOM element with another, preserving all child nodes by default.
         * 
-        * @param       \DOMElement     $oldElement             old element
-        * @param       \DOMElement     $newElement             new element
-        * @param       boolean         $preserveChildNodes     true if child nodes should be moved, otherwise they'll be implicitly removed
+        * @param       \DOMElement     $oldElement             old element
+        * @param       \DOMElement     $newElement             new element
+        * @param       boolean         $preserveChildNodes     true if child nodes should be moved, otherwise they'll be implicitly removed
         */
        public static function replaceElement(\DOMElement $oldElement, \DOMElement $newElement, $preserveChildNodes = true) {
                self::insertBefore($newElement, $oldElement);
@@ -404,10 +404,10 @@ final class DOMUtil {
         * extraction of DOM parts while preserving nesting for both the extracted nodes
         * and the remaining siblings.
         * 
-        * @param       \DOMNode        $node           reference node
-        * @param       \DOMElement     $ancestor       ancestor element that should not be split
-        * @param       boolean         $splitBefore    true if nodes before `$node` should be moved into a new node, false to split nodes after `$node`
-        * @return      \DOMElement     parent node containing `$node`, direct child of `$ancestor`
+        * @param       \DOMNode        $node           reference node
+        * @param       \DOMElement     $ancestor       ancestor element that should not be split
+        * @param       boolean         $splitBefore    true if nodes before `$node` should be moved into a new node, false to split nodes after `$node`
+        * @return      \DOMElement     parent node containing `$node`, direct child of `$ancestor`
         */
        public static function splitParentsUntil(\DOMNode $node, \DOMElement $ancestor, $splitBefore = true) {
                if (!self::contains($ancestor, $node)) {