order_service = $order_service; } /** * Execute the console command. * * @return mixed */ public function handle() { try { $this->info("processing summit orders without action"); $start = time(); Log::debug("RegistrationSummitOrderReminderEmailCommand::handle"); $this->order_service->processAllOrderReminder(); $end = time(); $delta = $end - $start; $this->info(sprintf("execution call %s seconds", $delta)); } catch (Exception $ex) { Log::error($ex); } } }