Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/framework/Validator/HTML/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Validator/HTML/WYSIWYGValidatorInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\Validator\HTML;

use Magento\Framework\Validation\ValidationException;

/**
 * Validates user HTML.
 *
 * @api
 */
interface WYSIWYGValidatorInterface
{
    /**
     * Validate user HTML content.
     *
     * @param string $content
     * @throws ValidationException
     */
    public function validate(string $content): void;
}