diff options
author | addshore <addshorewiki@gmail.com> | 2014-08-11 21:24:54 +0100 |
---|---|---|
committer | Legoktm <legoktm.wikipedia@gmail.com> | 2014-08-12 01:00:15 +0000 |
commit | 61c989cfc04b98f221e5e9106018ebfed3255c39 (patch) | |
tree | 604912008d7df2a93c17c67e1c2c48becc8fd51d /includes/parser/ParserDiffTest.php | |
parent | cce77215503cdc2bb687f0aaad372dbbacbc61e0 (diff) | |
download | mediawikicore-61c989cfc04b98f221e5e9106018ebfed3255c39.tar.gz mediawikicore-61c989cfc04b98f221e5e9106018ebfed3255c39.zip |
Fix phpcs issues in parser
This fixes all issues except for:
- class names
- line length
Change-Id: Ie91b010d5b3eec49d3b80b6e93b125a901ef43c6
Diffstat (limited to 'includes/parser/ParserDiffTest.php')
-rw-r--r-- | includes/parser/ParserDiffTest.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/includes/parser/ParserDiffTest.php b/includes/parser/ParserDiffTest.php index 2db0597e2bdd..174c1d61ac30 100644 --- a/includes/parser/ParserDiffTest.php +++ b/includes/parser/ParserDiffTest.php @@ -26,19 +26,19 @@ */ class ParserDiffTest { - var $parsers, $conf; - var $shortOutput = false; + public $parsers; + public $conf; + public $shortOutput = false; + public $dtUniqPrefix; - var $dtUniqPrefix; - - function __construct( $conf ) { + public function __construct( $conf ) { if ( !isset( $conf['parsers'] ) ) { throw new MWException( __METHOD__ . ': no parsers specified' ); } $this->conf = $conf; } - function init() { + public function init() { if ( !is_null( $this->parsers ) ) { return; } @@ -64,7 +64,7 @@ class ParserDiffTest } } - function __call( $name, $args ) { + public function __call( $name, $args ) { $this->init(); $results = array(); $mismatch = false; @@ -109,7 +109,7 @@ class ParserDiffTest return $lastResult; } - function formatArray( $array ) { + public function formatArray( $array ) { if ( $this->shortOutput ) { foreach ( $array as $key => $value ) { if ( $value instanceof ParserOutput ) { @@ -120,7 +120,7 @@ class ParserDiffTest return var_export( $array, true ); } - function setFunctionHook( $id, $callback, $flags = 0 ) { + public function setFunctionHook( $id, $callback, $flags = 0 ) { $this->init(); foreach ( $this->parsers as $parser ) { $parser->setFunctionHook( $id, $callback, $flags ); @@ -131,7 +131,7 @@ class ParserDiffTest * @param Parser $parser * @return bool */ - function onClearState( &$parser ) { + public function onClearState( &$parser ) { // hack marker prefixes to get identical output if ( !isset( $this->dtUniqPrefix ) ) { $this->dtUniqPrefix = $parser->uniqPrefix(); |