/**
  * Returns the next scheduled time for the auto updater.
  * 
  * @return Date|false
  */
 public static function getNextRunTime()
 {
     $task = new GeoIPAutoUpdater();
     $timetable = new ScheduledTaskTimetable();
     return $timetable->getScheduledTaskTime($task->getName());
 }