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