Your IP : 216.73.216.81


Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/magento/framework/Validator/
Upload File :
Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/magento/framework/Validator/ValidatorChain.php

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

namespace Magento\Framework\Validator;

use Laminas\Validator\ValidatorChain as LaminasValidatorChain;
use Laminas\Validator\ValidatorInterface;
use ReflectionException;

/**
 * @SuppressWarnings(PHPMD.CyclomaticComplexity)
 * @SuppressWarnings(PHPMD.ShortMethodName)
 */
class ValidatorChain extends LaminasValidatorChain
{
    /**
     * Method to validate a class have value.
     *
     * @param mixed  $value
     * @param string $classBaseName
     * @param array  $args
     *
     * @return boolean
     * @throws ValidateException
     */
    public static function is($value, $classBaseName, array $args = [])
    {
        try {
            $class = new \ReflectionClass($classBaseName);

            if ($class->implementsInterface(ValidatorInterface::class)) {
                if ($class->hasMethod('__construct')) {
                    $keys = array_keys($args);
                    $numeric = false;

                    foreach ($keys as $key) {
                        if (is_numeric($key)) {
                            $numeric = true;
                            break;
                        }
                    }
                    if ($numeric) {
                        $object = $class->newInstanceArgs($args);
                    } else {
                        $object = $class->newInstance($args);
                    }
                } else {
                    $object = $class->newInstance();
                }

                return $object->isValid($value);
            }
        } catch (ReflectionException $exception) {
            throw new ValidateException($exception->getMessage());
        }

        throw new ValidateException("Validate class not found from basename '$classBaseName'");
    }
}