Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2023-01-07 19:48:16 +00:00
parent 774eed8b0e
commit 5055b443fc
235 changed files with 14833 additions and 14446 deletions

View File

@@ -29,10 +29,11 @@ class Handler extends ExceptionHandler
/**
* Report or log an exception.
*
* @param \Exception $exception
* @return void
* @param \Exception $exception
*
* @throws \Exception
*
* @return void
*/
public function report(Exception $exception)
{
@@ -42,14 +43,15 @@ class Handler extends ExceptionHandler
/**
* Render an exception into an HTTP response.
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @return \Symfony\Component\HttpFoundation\Response
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
*
* @throws \Exception
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function render($request, Exception $exception)
{
return parent::render($request, $exception);
}
}
}