Sindbad~EG File Manager

Current Path : /opt/nginxhttpd_/vendor/doctrine/orm/src/Mapping/
Upload File :
Current File : //opt/nginxhttpd_/vendor/doctrine/orm/src/Mapping/ChainTypedFieldMapper.php

<?php

declare(strict_types=1);

namespace Doctrine\ORM\Mapping;

use ReflectionProperty;

final class ChainTypedFieldMapper implements TypedFieldMapper
{
    /**
     * @readonly
     * @var TypedFieldMapper[] $typedFieldMappers
     */
    private array $typedFieldMappers;

    public function __construct(TypedFieldMapper ...$typedFieldMappers)
    {
        $this->typedFieldMappers = $typedFieldMappers;
    }

    /**
     * {@inheritDoc}
     */
    public function validateAndComplete(array $mapping, ReflectionProperty $field): array
    {
        foreach ($this->typedFieldMappers as $typedFieldMapper) {
            $mapping = $typedFieldMapper->validateAndComplete($mapping, $field);
        }

        return $mapping;
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists