CountryManagerInterface.php 317 B

123456789101112131415161718
  1. <?php
  2. namespace Drupal\Core\Locale;
  3. /**
  4. * Defines a common interface for country managers.
  5. */
  6. interface CountryManagerInterface {
  7. /**
  8. * Returns a list of country code => country name pairs.
  9. *
  10. * @return array
  11. * An array of country code => country name pairs.
  12. */
  13. public function getList();
  14. }