X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fparser%2FParserDiffTest.php;h=353825a8fbd66b84de301c115e1ba37a77fc8658;hb=bc12345f4bb7893030c31e1133abc4b20153f59b;hp=32f5d06826fc98a11b2e8e16a92f33ba8f985dc7;hpb=977f7ad8ade23a7ce5326a993bdf48c8beb42db0;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/parser/ParserDiffTest.php b/includes/parser/ParserDiffTest.php index 32f5d06826..353825a8fb 100644 --- a/includes/parser/ParserDiffTest.php +++ b/includes/parser/ParserDiffTest.php @@ -24,8 +24,7 @@ /** * @ingroup Parser */ -class ParserDiffTest -{ +class ParserDiffTest { public $parsers; public $conf; public $shortOutput = false; @@ -49,7 +48,7 @@ class ParserDiffTest foreach ( $this->conf['parsers'] as $i => $parserConf ) { if ( !is_array( $parserConf ) ) { $class = $parserConf; - $parserConf = array( 'class' => $parserConf ); + $parserConf = [ 'class' => $parserConf ]; } else { $class = $parserConf['class']; } @@ -59,12 +58,12 @@ class ParserDiffTest public function __call( $name, $args ) { $this->init(); - $results = array(); + $results = []; $mismatch = false; $lastResult = null; $first = true; foreach ( $this->parsers as $i => $parser ) { - $currentResult = call_user_func_array( array( &$this->parsers[$i], $name ), $args ); + $currentResult = call_user_func_array( [ &$this->parsers[$i], $name ], $args ); if ( $first ) { $first = false; } else { @@ -83,7 +82,7 @@ class ParserDiffTest } if ( $mismatch ) { if ( count( $results ) == 2 ) { - $resultsList = array(); + $resultsList = []; foreach ( $this->parsers as $i => $parser ) { $resultsList[] = var_export( $results[$i], true ); }