* @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\GetCustomerForViewing; use PrestaShop\PrestaShop\Core\Domain\Customer\QueryResult\ViewableCustomer; /** * Class GetCustomerInformationHandlerInterface. */ interface GetCustomerForViewingHandlerInterface { /** * @param GetCustomerForViewing $query * * @return ViewableCustomer */ public function handle(GetCustomerForViewing $query); }