connection = 'redis'; $this->onQueue('default'); } /** * Execute the job. * * @return void */ public function handle() { $moonHelper = new MoonCalc; $moonHelper->FetchNewPrices(); } /** * Set the tags for Horzion * * @var array */ public function tags() { return ['Eve', 'ItemPricesUpdate']; } }