alias = $alias; $this->company_id = $company_id; } /** * Execute the job. * * @return string */ public function handle() { $command = "module:download {$this->alias} {$this->company_id}"; $result = Console::run($command); if ($result !== true) { throw new \Exception($result); } } }