deltaAttributes = $deltaAttributes; $this->originalTicket = $originalTicket; $this->updatedTicket = $updatedTicket; $this->server = config('database.default'); $this->action = $action; } /** * process action */ public function handle() { $ticketHandler = new App\Ninja\Tickets\Factory\TicketFactory($this->originalTicket, $this->deltaAttributes, $this->updatedTicket, $this->action); $ticketHandler->process(); } }