/**
  * Execute the console command.
  *
  * @return mixed
  */
 public function fire()
 {
     Log::info('GetEvents fired');
     // going through the users
     foreach (User::all() as $user) {
         // saving events
         Calculator::saveEvents($user);
     }
     Log::info('GetEvents finished');
 }