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