Created
March 15, 2018 13:50
-
-
Save finagin/4022e2bcf2beb540253929e4df3fdb0a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php declare(strict_types=1); | |
| if (!function_exists('dump')) { | |
| function dump(...$args) | |
| { | |
| ob_start(); | |
| var_dump($args); | |
| file_put_contents('/tmp/igor.manual.log', ob_get_clean()); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment