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());
}