* @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\GetCustomerForEditing; use PrestaShop\PrestaShop\Core\Domain\Customer\QueryResult\EditableCustomer; /** * Interface for service that gets customer data for editing */ interface GetCustomerForEditingHandlerInterface { /** * @param GetCustomerForEditing $query * * @return EditableCustomer */ public function handle(GetCustomerForEditing $query); }