return statement not needed here

This commit is contained in:
Taylor Otwell 2015-12-23 12:02:21 -06:00
parent ad173afa5f
commit 2b940ce5ec
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class Handler extends ExceptionHandler
*/
public function report(Exception $e)
{
return parent::report($e);
parent::report($e);
}
/**