12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\InventoryDistanceBasedSourceSelection\Model\Convert;
- use Magento\InventorySourceSelectionApi\Api\Data\AddressInterface;
- class AddressToComponentsString
- {
- /**
- * Get components string from address
- *
- * @param AddressInterface $address
- * @return string
- */
- public function execute(AddressInterface $address): string
- {
- return implode('|', [
- 'country:' . $address->getCountry(),
- // 'postal_code:' . $address->getPostcode(),
- 'locality:' . $address->getCity(),
- ]);
- }
- }
|