Issues (1)

src/Helpers.php (1 issue)

1
<?php
2
3
if (!function_exists('dd')) {
4
    function dd($data) {
5
        dump($data);
6
        die;
0 ignored issues
show
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
7
    }
8
}