Skip to content

Commit

Permalink
Update code for Laravel 7+ due to symphony changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tsiedsma committed Mar 5, 2021
1 parent 430d603 commit 5243439
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/LithiumDev/ExceptionMailer/ExceptionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
namespace LithiumDev\ExceptionMailer;


use Exception;
use Throwable;
use App\Exceptions\Handler;

class ExceptionHandler extends Handler {

/**
*
* @param Exception $e
* @param Throwable $e
*
* @return type
*/
public function report(Exception $e)
public function report(Throwable $e)
{
parent::report($e);

Expand Down

0 comments on commit 5243439

Please sign in to comment.