connection = 'redis'; $this->onQueue('default'); } /** * Execute the job. * * @return void */ public function handle() { //Declare variables $moonHelper = new MoonCalc; //Fetch new prices from fuzzwork.co.uk for the item pricing schemes $moonHelper->FetchNewPrices(); } /** * Set the tags for Horzion * * @var array */ public function tags() { return ['UpdateItemPrices', 'Finances']; } }