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); } }