* @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\Profile\QueryHandler; use PrestaShop\PrestaShop\Core\Domain\Profile\Query\GetProfileForEditing; use PrestaShop\PrestaShop\Core\Domain\Profile\QueryResult\EditableProfile; /** * Interface for service that gets Profile data for editing */ interface GetProfileForEditingHandlerInterface { /** * @param GetProfileForEditing $query * * @return EditableProfile */ public function handle(GetProfileForEditing $query): EditableProfile; }