Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../vendor/markbaker/.././egulias/./../phpoption/../unicodeveloper/../graham-campbell/../fruitcake/../symfony/string/../polyfill-uuid/../console/../routing/../../ezyang/../spatie/./../symfony/polyfill-mbstring/./../service-contracts/./../polyfill-php83/../http-kernel/DependencyInjection
الملفات الموجودة في هذا الـ Path:
.
..
AddAnnotatedClassesToCachePass.php
ConfigurableExtension.php
ControllerArgumentValueResolverPass.php
Extension.php
FragmentRendererPass.php
LazyLoadingFragmentHandler.php
LoggerPass.php
MergeExtensionConfigurationPass.php
RegisterControllerArgumentLocatorsPass.php
RegisterLocaleAwareServicesPass.php
RemoveEmptyControllerArgumentLocatorsPass.php
ResettableServicePass.php
ServicesResetter.php

مشاهدة ملف: MergeExtensionConfigurationPass.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\HttpKernel\DependencyInjection;

use Symfony\Component\DependencyInjection\Compiler\MergeExtensionConfigurationPass as BaseMergeExtensionConfigurationPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;

/**
 * Ensures certain extensions are always loaded.
 *
 * @author Kris Wallsmith <kris@symfony.com>
 */
class MergeExtensionConfigurationPass extends BaseMergeExtensionConfigurationPass
{
    private array $extensions;

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

    /**
     * @return void
     */
    public function process(ContainerBuilder $container)
    {
        foreach ($this->extensions as $extension) {
            if (!\count($container->getExtensionConfig($extension))) {
                $container->loadFromExtension($extension, []);
            }
        }

        parent::process($container);
    }
}