Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/Session/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/Session/CompositeValidator.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

declare(strict_types=1);

namespace Magento\Framework\Session;

/**
 * Use sequence of validators to validate sessions.
 */
class CompositeValidator implements ValidatorInterface
{
    /**
     * @var ValidatorInterface[]
     */
    private $validators;

    /**
     * @param ValidatorInterface[] $validators
     */
    public function __construct(array $validators)
    {
        $this->validators = $validators;
    }

    /**
     * @inheritDoc
     */
    public function validate(SessionManagerInterface $session): void
    {
        foreach ($this->validators as $validator) {
            $validator->validate($session);
        }
    }
}