Pull merge.
[yaffs-website] / web / core / lib / Drupal / Core / Locale / CountryManagerInterface.php
1 <?php
2
3 namespace Drupal\Core\Locale;
4
5 /**
6  * Defines a common interface for country managers.
7  */
8 interface CountryManagerInterface {
9
10   /**
11    * Returns a list of country code => country name pairs.
12    *
13    * @return array
14    *   An array of country code => country name pairs.
15    */
16   public function getList();
17
18 }