it_security_template/stubs/nwidart-stubs/exception-render-report.stub

27 lines
395 B
Plaintext

<?php
namespace $CLASS_NAMESPACE$;
use Exception;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
class $CLASS$ extends Exception
{
/**
* Report the exception.
*/
public function report(): void
{
//
}
/**
* Render the exception as an HTTP response.
*/
public function render(Request $request): Response
{
//
}
}