* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Address; use PrestaShop\PrestaShop\Core\Domain\Address\ValueObject\AddressId; /** * Format addresses depending on the country of the address */ interface AddressFormatterInterface { /** * @param AddressId $addressId * * @return string */ public function format(AddressId $addressId): string; }