Skip to content

Commit

Permalink
Correct exception handler doc (laravel#5187)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell authored Dec 24, 2019
1 parent 99f183b commit 846f7a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ class Handler extends ExceptionHandler
*
* @param \Exception $exception
* @return void
*
* @throws \Exception
*/
public function report(Exception $exception)
{
Expand All @@ -42,7 +44,9 @@ public function report(Exception $exception)
*
* @param \Illuminate\Http\Request $request
* @param \Exception $exception
* @return \Illuminate\Http\Response
* @return \Symfony\Component\HttpFoundation\Response
*
* @throws \Exception
*/
public function render($request, Exception $exception)
{
Expand Down

0 comments on commit 846f7a1

Please sign in to comment.