/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Address
NameSizeModeActions
CommandHandler/-0755rm
QueryHandler/-0755rm
AbstractAddressHandler.php32050644editdlrm
AbstractCustomerAddressHandler.php19770644editdlrm
AbstractManufacturerAddressHandler.php20030644editdlrm
AddressFormatter.php16410644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Address/AddressFormatter.php (1641B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShop\PrestaShop\Adapter\Address; use Address; use AddressFormat; use PrestaShop\PrestaShop\Core\Address\AddressFormatterInterface; use PrestaShop\PrestaShop\Core\Domain\Address\ValueObject\AddressId; class AddressFormatter implements AddressFormatterInterface { /** * @param AddressId $addressId * * @return string */ public function format(AddressId $addressId): string { return AddressFormat::generateAddress( new Address($addressId->getValue()) ); } }