34 lines
643 B
PHP
34 lines
643 B
PHP
<?php
|
|
|
|
namespace App\Initialize;
|
|
|
|
use Exception;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class InitializeJob implements ShouldQueue
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithQueue;
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
app(Initializer::class)->run();
|
|
}
|
|
|
|
public function failed(Exception $e): void
|
|
{
|
|
app(Initializer::class)->restore();
|
|
}
|
|
}
|