From 11c1250b722136f6efe449ba4249b47a55b48234 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 3 Jun 2021 00:19:16 +0200 Subject: [PATCH] Drop the quickdump tool This tool does not seem to be referenced or documented anywhere. --- tests/quickdump.php | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 tests/quickdump.php diff --git a/tests/quickdump.php b/tests/quickdump.php deleted file mode 100755 index 123fa5bd..00000000 --- a/tests/quickdump.php +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env php -parse(); -echo "\n" . '#### Input' . "\n\n```css\n"; -print $sSource; - -echo "\n```\n\n" . '#### Structure (`var_dump()`)' . "\n\n```php\n"; -var_dump($oDoc); - -echo "\n```\n\n" . '#### Output (`render()`)' . "\n\n```css\n"; -print $oDoc->render(); - -echo "\n```\n";