diff options
Diffstat (limited to 'tests/parser/parserTestsParserHook.php')
-rw-r--r-- | tests/parser/parserTestsParserHook.php | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/tests/parser/parserTestsParserHook.php b/tests/parser/parserTestsParserHook.php index 24d852c5..c8b3e897 100644 --- a/tests/parser/parserTestsParserHook.php +++ b/tests/parser/parserTestsParserHook.php @@ -34,23 +34,19 @@ class ParserTestParserHook { } static function dumpHook( $in, $argv ) { - ob_start(); - var_dump( - $in, - $argv - ); - $ret = ob_get_clean(); - - return "<pre>\n$ret</pre>"; + return "<pre>\n" . + var_export( $in, true ) . "\n" . + var_export( $argv, true ) . "\n" . + "</pre>"; } static function staticTagHook( $in, $argv, $parser ) { - if ( ! count( $argv ) ) { + if ( !count( $argv ) ) { $parser->static_tag_buf = $in; return ''; } elseif ( count( $argv ) === 1 && isset( $argv['action'] ) - && $argv['action'] === 'flush' && $in === null ) - { + && $argv['action'] === 'flush' && $in === null + ) { // Clear the buffer, we probably don't need to if ( isset( $parser->static_tag_buf ) ) { $tmp = $parser->static_tag_buf; @@ -59,12 +55,12 @@ class ParserTestParserHook { } $parser->static_tag_buf = null; return $tmp; - } else - // wtf? + } else { // wtf? return "\nCall this extension as <statictag>string</statictag> or as" . " <statictag action=flush/>, not in any other way.\n" . "text: " . var_export( $in, true ) . "\n" . "argv: " . var_export( $argv, true ) . "\n"; + } } } |