All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
25 lines
507 B
PHP
25 lines
507 B
PHP
<?php
|
|
|
|
use Spatie\LaravelIgnition\Renderers\ErrorPageRenderer;
|
|
|
|
if (! function_exists('ddd')) {
|
|
function ddd()
|
|
{
|
|
$args = func_get_args();
|
|
|
|
if (count($args) === 0) {
|
|
throw new Exception('You should pass at least 1 argument to `ddd`');
|
|
}
|
|
|
|
call_user_func_array('dump', $args);
|
|
|
|
$renderer = app()->make(ErrorPageRenderer::class);
|
|
|
|
$exception = new Exception('Dump, Die, Debug');
|
|
|
|
$renderer->render($exception);
|
|
|
|
die();
|
|
}
|
|
}
|