41 lines
801 B
PHP
41 lines
801 B
PHP
<?php
|
|
|
|
namespace App\Jobs\Api;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
|
|
class SaveLastTokenJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
protected $model;
|
|
protected $token;
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
|
|
public function __construct($model,$token)
|
|
{
|
|
//
|
|
$this->model=$model;
|
|
$this->token=$token;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
//
|
|
$this->model->last_token = $this->token;
|
|
$this->model->save();
|
|
}
|
|
}
|