private function CheckExceptionOnInvalidReferenceBehaviorPass::processDefinition

2 calls to CheckExceptionOnInvalidReferenceBehaviorPass::processDefinition()
CheckExceptionOnInvalidReferenceBehaviorPass::process in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php
You can modify the container here before it is dumped to PHP code.
CheckExceptionOnInvalidReferenceBehaviorPass::processReferences in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php, line 41

Class

CheckExceptionOnInvalidReferenceBehaviorPass
Checks that all references are pointing to a valid service.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

private function processDefinition(Definition $definition) {
  $this
    ->processReferences($definition
    ->getArguments());
  $this
    ->processReferences($definition
    ->getMethodCalls());
  $this
    ->processReferences($definition
    ->getProperties());
}