Fix phpcs errors in includes/
[lhc/web/wiklou.git] / includes / skins / SkinTemplate.php
index f60e4e8..45a1a8b 100644 (file)
@@ -204,8 +204,6 @@ class SkinTemplate extends Skin {
                        $this->userpageUrlDetails = self::makeKnownUrlDetails( $this->userpage );
                }
 
-
-
                return $tpl;
        }
 
@@ -253,7 +251,6 @@ class SkinTemplate extends Skin {
                        $wgShowCreditsIfMax, $wgArticlePath,
                        $wgScriptPath, $wgServer;
 
-
                $title = $this->getTitle();
                $request = $this->getRequest();
                $out = $this->getOutput();
@@ -353,7 +350,6 @@ class SkinTemplate extends Skin {
                        $tpl->set( 'userlangattributes', $attrs );
                }
 
-
                $tpl->set( 'newtalk', $this->getNewtalks() );
                $tpl->set( 'logo', $this->logoText() );
 
@@ -798,7 +794,6 @@ class SkinTemplate extends Skin {
        protected function buildContentNavigationUrls() {
                global $wgDisableLangConversion;
 
-
                // Display tabs for the relevant title rather than always the title itself
                $title = $this->getRelevantTitle();
                $onPage = $title->equals( $this->getTitle() );
@@ -884,7 +879,6 @@ class SkinTemplate extends Skin {
                                        );
                                }
 
-
                                // Checks if user can edit the current page if it exists or create it otherwise
                                if ( $title->quickUserCan( 'edit', $user )
                                        && ( $title->exists() || $title->quickUserCan( 'create', $user ) )
@@ -1002,7 +996,6 @@ class SkinTemplate extends Skin {
                                        );
                                }
 
-
                                // Checks if the user is logged in
                                if ( $this->loggedin && $user->isAllowedAll( 'viewmywatchlist', 'editmywatchlist' ) ) {
                                        /**
@@ -1109,7 +1102,6 @@ class SkinTemplate extends Skin {
                        }
                }
 
-
                return $content_navigation;
        }
 
@@ -1120,7 +1112,6 @@ class SkinTemplate extends Skin {
         */
        private function buildContentActionUrls( $content_navigation ) {
 
-
                // content_actions has been replaced with content_navigation for backwards
                // compatibility and also for skins that just want simple tabs content_actions
                // is now built by flattening the content_navigation arrays into one
@@ -1152,7 +1143,6 @@ class SkinTemplate extends Skin {
                        }
                }
 
-
                return $content_actions;
        }
 
@@ -1163,7 +1153,6 @@ class SkinTemplate extends Skin {
        protected function buildNavUrls() {
                global $wgUploadNavigationUrl;
 
-
                $out = $this->getOutput();
                $request = $this->getRequest();