From ee02197dfc6aef60d71cc9435fc471c9f146566c Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Wed, 9 Jan 2019 19:52:52 -0600 Subject: [PATCH] send eve mail job testing --- app/Jobs/SendEveMail.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Jobs/SendEveMail.php b/app/Jobs/SendEveMail.php index c528caf3a..336f45583 100644 --- a/app/Jobs/SendEveMail.php +++ b/app/Jobs/SendEveMail.php @@ -7,6 +7,7 @@ use Illuminate\Queue\SerializesModels; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; +use App\Jobs\ use Seat\Eseye\Configuration; use Seat\Eseye\Containers\EsiAuthentication; @@ -98,8 +99,9 @@ class SendEveMail implements ShouldQueue * @param Exception $exception * @return void */ - public function failed(Exception $exception) + public function failed($exception) { // Send user notification of failure, etc... + dd($exception); } }