* @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\Domain\Address\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Address\Query\GetCustomerAddressForEditing; use PrestaShop\PrestaShop\Core\Domain\Address\QueryResult\EditableCustomerAddress; /** * Interface for services that handles query which gets customer address for editing */ interface GetCustomerAddressForEditingHandlerInterface { /** * @param GetCustomerAddressForEditing $query * * @return EditableCustomerAddress */ public function handle(GetCustomerAddressForEditing $query): EditableCustomerAddress; }