* @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\Customer\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Customer\Query\GetCustomerForAddressCreation; use PrestaShop\PrestaShop\Core\Domain\Customer\QueryResult\AddressCreationCustomerInformation; /** * Defines contract for customer by email search handler */ interface GetCustomerForAddressCreationHandlerInterface { /** * @param GetCustomerForAddressCreation $query * * @return AddressCreationCustomerInformation */ public function handle(GetCustomerForAddressCreation $query): AddressCreationCustomerInformation; }