dev.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace { |
| 4 | if (!\function_exists('dump')) { |
| 5 | /** |
| 6 | * `symfony/var-dumper` works only in development environment |
| 7 | * adds `dump` for production |
| 8 | * should be included after autoloading |
| 9 | * @see https://github.com/matomo-org/matomo/issues/6890 |
| 10 | */ |
| 11 | function dump() |
| 12 | { |
| 13 | // |
| 14 | } |
| 15 | } |
| 16 | } |
| 17 |