From 144d7411963c8e7e53b40bb9ef39cc9da4f839ca Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Sun, 28 Dec 2014 22:16:05 +0200 Subject: [PATCH] Shorten lines to pass phpcs test Change-Id: I5588e1f16f1a23d77160cd180058bd2000a93ab6 --- includes/parser/Parser.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index 6b2444ebb5..b7f8cf2364 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -146,7 +146,8 @@ class Parser { * @var MagicWordArray */ public $mSubstWords; - public $mConf, $mPreprocessor, $mExtLinkBracketedRegex, $mUrlProtocols; # Initialised in constructor + # Initialised in constructor + public $mConf, $mPreprocessor, $mExtLinkBracketedRegex, $mUrlProtocols; # Cleared with clearState(): /** @@ -633,7 +634,9 @@ class Parser { * @param bool|PPFrame $frame * @return mixed|string */ - public function preprocess( $text, Title $title = null, ParserOptions $options, $revid = null, $frame = false ) { + public function preprocess( $text, Title $title = null, + ParserOptions $options, $revid = null, $frame = false + ) { wfProfileIn( __METHOD__ ); $magicScopeVariable = $this->lock(); $this->startParse( $title, $options, self::OT_PREPROCESS, true ); -- 2.20.1