You are here

public function YamlFileLoader::load in Service Container 7

Same name in this branch
  1. 7 lib/Drupal/Core/DependencyInjection/YamlFileLoader.php \Drupal\Core\DependencyInjection\YamlFileLoader::load()
  2. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php \Symfony\Component\DependencyInjection\Loader\YamlFileLoader::load()
Same name and namespace in other branches
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php \Symfony\Component\DependencyInjection\Loader\YamlFileLoader::load()

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php, line 39

Class

YamlFileLoader
YamlFileLoader loads YAML files service definitions.

Namespace

Symfony\Component\DependencyInjection\Loader

Code

public function load($resource, $type = null) {
  $path = $this->locator
    ->locate($resource);
  $content = $this
    ->loadFile($path);
  $this->container
    ->addResource(new FileResource($path));

  // empty file
  if (null === $content) {
    return;
  }

  // imports
  $this
    ->parseImports($content, $path);

  // parameters
  if (isset($content['parameters'])) {
    if (!is_array($content['parameters'])) {
      throw new InvalidArgumentException(sprintf('The "parameters" key should contain an array in %s. Check your YAML syntax.', $resource));
    }
    foreach ($content['parameters'] as $key => $value) {
      $this->container
        ->setParameter($key, $this
        ->resolveServices($value));
    }
  }

  // extensions
  $this
    ->loadFromExtensions($content);

  // services
  $this
    ->parseDefinitions($content, $resource);
}