Emails/notifications not sending #675 (#686)

* Add test call to test notification #675

* Fix queue driver with emails not sending; formatting #675
This commit is contained in:
Nabeel S
2020-05-09 11:31:25 -04:00
committed by GitHub
parent 69fb5a537e
commit 1054d53826
14 changed files with 37 additions and 10 deletions

View File

@@ -5,14 +5,13 @@ namespace Modules\Importer\Services;
use App\Services\Installer\LoggerTrait;
use Carbon\Carbon;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Support\Facades\Log;
use Modules\Importer\Utils\IdMapper;
use Modules\Importer\Utils\ImporterDB;
abstract class BaseImporter implements ShouldQueue
abstract class BaseImporter
{
use LoggerTrait;
use Dispatchable;