@@ -41,7 +41,7 @@ |
||
41 | 41 | * Lingo\Backend constructor. |
42 | 42 | * @param MessageLog|null $messages |
43 | 43 | */ |
44 | - public function __construct( MessageLog &$messages = null ) { |
|
44 | + public function __construct( MessageLog & $messages = null ) { |
|
45 | 45 | |
46 | 46 | if ( !$messages ) { |
47 | 47 | $this->mMessageLog = new MessageLog(); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | const ELEMENT_LINK = 3; |
49 | 49 | const ELEMENT_STYLE = 4; |
50 | 50 | |
51 | - const ELEMENT_FIELDCOUNT = 5; // number of fields stored for each element; (last field's index) + 1 |
|
51 | + const ELEMENT_FIELDCOUNT = 5; // number of fields stored for each element; (last field's index) + 1 |
|
52 | 52 | static private $mLinkTemplate = null; |
53 | 53 | private $mFullDefinition = null; |
54 | 54 | private $mDefinitions = array(); |
@@ -73,14 +73,14 @@ discard block |
||
73 | 73 | * @param $definition |
74 | 74 | */ |
75 | 75 | public function addDefinition( &$definition ) { |
76 | - $this->mDefinitions[] = array_pad( $definition, self::ELEMENT_FIELDCOUNT, null ); |
|
76 | + $this->mDefinitions[ ] = array_pad( $definition, self::ELEMENT_FIELDCOUNT, null ); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
80 | 80 | * @param DOMDocument $doc |
81 | 81 | * @return DOMNode|DOMText |
82 | 82 | */ |
83 | - public function getFullDefinition( DOMDocument &$doc ) { |
|
83 | + public function getFullDefinition( DOMDocument & $doc ) { |
|
84 | 84 | |
85 | 85 | global $wgexLingoDisplayOnce; |
86 | 86 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | * @param DOMDocument $doc |
99 | 99 | * @return DOMDocument |
100 | 100 | */ |
101 | - private function buildFullDefinition( DOMDocument &$doc ) { |
|
101 | + private function buildFullDefinition( DOMDocument & $doc ) { |
|
102 | 102 | |
103 | 103 | // only create if not yet created |
104 | 104 | if ( $this->mFullDefinition === null || $this->mFullDefinition->ownerDocument !== $doc ) { |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @return DOMElement |
127 | 127 | * @throws MWException |
128 | 128 | */ |
129 | - protected function getFullDefinitionAsLink( DOMDocument &$doc ) { |
|
129 | + protected function getFullDefinitionAsLink( DOMDocument & $doc ) { |
|
130 | 130 | |
131 | 131 | // create Title object for target page |
132 | 132 | $target = Title::newFromText( $this->mDefinitions[ 0 ][ self::ELEMENT_LINK ] ); |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | * @return string |
197 | 197 | * @throws MWException |
198 | 198 | */ |
199 | - protected function getFullDefinitionAsTooltip( DOMDocument &$doc ) { |
|
199 | + protected function getFullDefinitionAsTooltip( DOMDocument & $doc ) { |
|
200 | 200 | |
201 | 201 | // Wrap term and definition in <span> tags |
202 | 202 | $span = $doc->createElement( 'span' ); |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | * @param DOMDocument $doc |
240 | 240 | * @return DOMNode |
241 | 241 | */ |
242 | - private function getLinkTemplate( DOMDocument &$doc ) { |
|
242 | + private function getLinkTemplate( DOMDocument & $doc ) { |
|
243 | 243 | // create template if it does not yet exist |
244 | 244 | if ( !self::$mLinkTemplate || ( self::$mLinkTemplate->ownerDocument !== $doc ) ) { |
245 | 245 | global $wgScriptPath; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | * @param int $severity |
54 | 54 | */ |
55 | 55 | public function addMessage( $message, $severity = self::MESSAGE_NOTICE ) { |
56 | - $this->mMessages[] = array( $message, $severity ); |
|
56 | + $this->mMessages[ ] = array( $message, $severity ); |
|
57 | 57 | |
58 | 58 | // log errors and warnings in debug log |
59 | 59 | if ( $severity == self::MESSAGE_WARNING || |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * @param $message |
68 | 68 | */ |
69 | 69 | public function addError( $message ) { |
70 | - $this->mMessages[] = array( $message, self::MESSAGE_ERROR ); |
|
70 | + $this->mMessages[ ] = array( $message, self::MESSAGE_ERROR ); |
|
71 | 71 | wfDebug( "Error: $message\n" ); |
72 | 72 | } |
73 | 73 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * @param $message |
76 | 76 | */ |
77 | 77 | public function addWarning( $message ) { |
78 | - $this->mMessages[] = array( $message, self::MESSAGE_WARNING ); |
|
78 | + $this->mMessages[ ] = array( $message, self::MESSAGE_WARNING ); |
|
79 | 79 | wfDebug( "Warning: $message\n" ); |
80 | 80 | } |
81 | 81 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * @param $message |
84 | 84 | */ |
85 | 85 | public function addNotice( $message ) { |
86 | - $this->mMessages[] = array( $message, self::MESSAGE_NOTICE ); |
|
86 | + $this->mMessages[ ] = array( $message, self::MESSAGE_NOTICE ); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | public static function initExtension() { |
46 | 46 | |
47 | - $GLOBALS[ 'wgExtensionFunctions' ][] = function () { |
|
47 | + $GLOBALS[ 'wgExtensionFunctions' ][ ] = function() { |
|
48 | 48 | |
49 | 49 | $parser = LingoParser::getInstance(); |
50 | 50 | |
@@ -54,9 +54,9 @@ discard block |
||
54 | 54 | |
55 | 55 | \Hooks::register( 'ParserAfterParse', array( $parser, 'parse' ) ); |
56 | 56 | |
57 | - \Hooks::register( 'ParserFirstCallInit', function ( \Parser $parser ) { |
|
57 | + \Hooks::register( 'ParserFirstCallInit', function( \Parser $parser ) { |
|
58 | 58 | |
59 | - $parser->setHook( 'noglossary', function ( $input, array $args, Parser $parser, PPFrame $frame ) { |
|
59 | + $parser->setHook( 'noglossary', function( $input, array $args, Parser $parser, PPFrame $frame ) { |
|
60 | 60 | $output = $parser->recursiveTagParse( $input, $frame ); |
61 | 61 | return '<span class="noglossary">' . $output . '</span>'; |
62 | 62 | } ); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | return true; |
65 | 65 | } ); |
66 | 66 | |
67 | - MagicWord::$mDoubleUnderscoreIDs[] = 'noglossary'; |
|
67 | + MagicWord::$mDoubleUnderscoreIDs[ ] = 'noglossary'; |
|
68 | 68 | |
69 | 69 | foreach ( $GLOBALS[ 'wgExtensionCredits' ][ 'parserhook' ] as $index => $description ) { |
70 | 70 |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * Lingo\BasicBackend constructor. |
52 | 52 | * @param MessageLog|null $messages |
53 | 53 | */ |
54 | - public function __construct( MessageLog &$messages = null ) { |
|
54 | + public function __construct( MessageLog & $messages = null ) { |
|
55 | 55 | |
56 | 56 | parent::__construct( $messages ); |
57 | 57 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | if ( $term !== null ) { |
95 | 95 | foreach ( $definitions as $definition ) { |
96 | - $ret[] = array( |
|
96 | + $ret[ ] = array( |
|
97 | 97 | Element::ELEMENT_TERM => $term, |
98 | 98 | Element::ELEMENT_DEFINITION => $definition, |
99 | 99 | Element::ELEMENT_LINK => null, |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | $term = null; |
227 | 227 | } |
228 | 228 | |
229 | - $definitions[] = trim( $chunks[ 1 ] ); |
|
229 | + $definitions[ ] = trim( $chunks[ 1 ] ); |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | // found a new term? |
@@ -241,7 +241,7 @@ discard block |
||
241 | 241 | * @param WikiPage $wikipage |
242 | 242 | * @return Bool |
243 | 243 | */ |
244 | - public function purgeCache( WikiPage &$wikipage ) { |
|
244 | + public function purgeCache( WikiPage & $wikipage ) { |
|
245 | 245 | |
246 | 246 | if ( !is_null( $wikipage ) && ( $wikipage->getTitle()->getText() === $this->getLingoPageName() ) ) { |
247 | 247 |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * Lingo\LingoParser constructor. |
58 | 58 | * @param MessageLog|null $messages |
59 | 59 | */ |
60 | - public function __construct( MessageLog &$messages = null ) { |
|
60 | + public function __construct( MessageLog & $messages = null ) { |
|
61 | 61 | // The RegEx to split a chunk of text into words |
62 | 62 | // Words are: placeholders for stripped items, sequences of letters and numbers, single characters that are neither letter nor number |
63 | 63 | $this->regex = '/' . preg_quote( Parser::MARKER_PREFIX, '/' ) . '.*?' . preg_quote( Parser::MARKER_SUFFIX, '/' ) . '|[\p{L}\p{N}]+|[^\p{L}\p{N}]/u'; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @param string $text |
70 | 70 | * @return Boolean |
71 | 71 | */ |
72 | - public function parse( Parser &$parser, &$text ) { |
|
72 | + public function parse( Parser & $parser, &$text ) { |
|
73 | 73 | |
74 | 74 | // parse if |
75 | 75 | if ( $this->shouldParse( $parser ) ) { |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | } else { |
162 | 162 | |
163 | 163 | wfDebug( "Cache miss: Lingo tree not found in cache.\n" ); |
164 | - $this->mLingoTree =& $this->buildLingo(); |
|
164 | + $this->mLingoTree = & $this->buildLingo(); |
|
165 | 165 | wfDebug( "Cached lingo tree.\n" ); |
166 | 166 | } |
167 | 167 | |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | |
173 | 173 | } else { |
174 | 174 | wfDebug( "Caching of lingo tree disabled.\n" ); |
175 | - $this->mLingoTree =& $this->buildLingo(); |
|
175 | + $this->mLingoTree = & $this->buildLingo(); |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | } |
@@ -385,7 +385,7 @@ discard block |
||
385 | 385 | * @param Parser $parser |
386 | 386 | * @return bool |
387 | 387 | */ |
388 | - protected function shouldParse( Parser &$parser ) { |
|
388 | + protected function shouldParse( Parser & $parser ) { |
|
389 | 389 | global $wgexLingoUseNamespaces; |
390 | 390 | |
391 | 391 | $title = $parser->getTitle(); |