/**
  * {@inheritdoc}
  */
 public function getList()
 {
     // Populate the country list if it is not already populated.
     if (!isset($this->countries)) {
         $this->countries = \Drupal\Core\Locale\CountryManager::getStandardList();
         $this->moduleHandler->alter('countries', $this->countries);
     }
     return $this->countries;
 }