Format.php 775 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Directory\Model\Country;
  7. /**
  8. * Directory country format model
  9. *
  10. * @method string getCountryId()
  11. * @method \Magento\Directory\Model\Country\Format setCountryId(string $value)
  12. * @method string getType()
  13. * @method \Magento\Directory\Model\Country\Format setType(string $value)
  14. * @method string getFormat()
  15. * @method \Magento\Directory\Model\Country\Format setFormat(string $value)
  16. *
  17. * @api
  18. * @since 100.0.2
  19. */
  20. class Format extends \Magento\Framework\Model\AbstractModel
  21. {
  22. /**
  23. * @return void
  24. */
  25. protected function _construct()
  26. {
  27. $this->_init(\Magento\Directory\Model\ResourceModel\Country\Format::class);
  28. }
  29. }