1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 11:52:29 +01:00
freescout/app/Jobs/TriggerAction.php
2018-11-24 10:11:51 +00:00

45 lines
888 B
PHP

<?php
/**
* Used to tirgger Eventy actions with delay.
*/
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class TriggerAction implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public $action;
public $params;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct($action, $params)
{
$this->action = $action;
$this->params = $params;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$args = $this->params;
array_unshift($args, $this->action);
call_user_func_array("\Eventy::action", $args);
}
}