Full.php 590 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Directory\Model\Config\Source\Country;
  7. /**
  8. * Options provider for full countries list
  9. *
  10. * @api
  11. *
  12. * @codeCoverageIgnore
  13. * @since 100.0.2
  14. */
  15. class Full extends \Magento\Directory\Model\Config\Source\Country implements \Magento\Framework\Option\ArrayInterface
  16. {
  17. /**
  18. * @inheritdoc
  19. */
  20. public function toOptionArray($isMultiselect = false, $foregroundCountries = '')
  21. {
  22. return parent::toOptionArray(true, $foregroundCountries);
  23. }
  24. }