PHP 8.2.30
Preview: FileLoader.php Size: 1.04 KB
//opt/cloudlinux/alt-php55/root/usr/share/pear/Symfony/Component/DependencyInjection/Loader/FileLoader.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\DependencyInjection\Loader;

use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\Loader\FileLoader as BaseFileLoader;
use Symfony\Component\Config\FileLocatorInterface;

/**
 * FileLoader is the abstract class used by all built-in loaders that are file based.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 */
abstract class FileLoader extends BaseFileLoader
{
    protected $container;

    /**
     * Constructor.
     *
     * @param ContainerBuilder $container A ContainerBuilder instance
     * @param FileLocatorInterface      $locator   A FileLocator instance
     */
    public function __construct(ContainerBuilder $container, FileLocatorInterface $locator)
    {
        $this->container = $container;

        parent::__construct($locator);
    }
}

Directory Contents

Dirs: 1 × Files: 6

Name Size Perms Modified Actions
schema DIR
- drwxr-xr-x 2024-03-03 22:54:39
Edit Download
1.49 KB lrw-r--r-- 2019-12-18 11:24:05
Edit Download
1.04 KB lrw-r--r-- 2019-12-18 11:24:05
Edit Download
1.78 KB lrw-r--r-- 2019-12-18 11:24:05
Edit Download
1.54 KB lrw-r--r-- 2019-12-18 11:24:05
Edit Download
14.22 KB lrw-r--r-- 2019-12-18 11:24:05
Edit Download
10.90 KB lrw-r--r-- 2019-12-18 11:24:05
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).