From: Amir E. Aharoni Date: Sun, 28 Dec 2014 20:16:05 +0000 (+0200) Subject: Shorten lines to pass phpcs test X-Git-Tag: 1.31.0-rc.0~12850 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=144d7411963c8e7e53b40bb9ef39cc9da4f839ca;p=lhc%2Fweb%2Fwiklou.git Shorten lines to pass phpcs test Change-Id: I5588e1f16f1a23d77160cd180058bd2000a93ab6 --- 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 );