request = $request; $this->profile = $profile; $this->payload = $payload; } /** * Execute the job. * * @return void */ public function handle() { (new Inbox($this->request, $this->profile, $this->payload))->handle(); } }