Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/framework/Validator/HTML/
Upload File :
Current File : /var/www/html/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.
 */
interface WYSIWYGValidatorInterface
{
    /**
     * Validate user HTML content.
     *
     * @param string $content
     * @throws ValidationException
     */
    public function validate(string $content): void;
}