* @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\GetManufacturerAddressForEditing; use PrestaShop\PrestaShop\Core\Domain\Address\QueryResult\EditableManufacturerAddress; /** * Interface for services that handles query which gets manufacturer address for editing */ interface GetManufacturerAddressForEditingHandlerInterface { /** * @param GetManufacturerAddressForEditing $query * * @return EditableManufacturerAddress */ public function handle(GetManufacturerAddressForEditing $query); }