FileLoader.php in Service Container 7
File
modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Loader/FileLoader.php
View source
<?php
namespace Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Config\Loader\FileLoader as BaseFileLoader;
use Symfony\Component\Config\FileLocatorInterface;
abstract class FileLoader extends BaseFileLoader {
protected $container;
public function __construct(ContainerBuilder $container, FileLocatorInterface $locator) {
$this->container = $container;
parent::__construct($locator);
}
}
Classes
Name |
Description |
FileLoader |
FileLoader is the abstract class used by all built-in loaders that are file based. |