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