19 lines
359 B
PHP
19 lines
359 B
PHP
<?php
|
|
namespace App\Jobs;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Queue\Queueable;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
class PriceHistoryJob implements ShouldQueue{
|
|
|
|
use Queueable;
|
|
|
|
/**
|
|
* Execute the job.
|
|
*/
|
|
public function handle(): void{
|
|
Artisan::call('explorer:aux pricehistory');
|
|
}
|
|
|
|
}
|