private function CheckExceptionOnInvalidReferenceBehaviorPass::processDefinition in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php \Symfony\Component\DependencyInjection\Compiler\CheckExceptionOnInvalidReferenceBehaviorPass::processDefinition()
2 calls to CheckExceptionOnInvalidReferenceBehaviorPass::processDefinition()
- CheckExceptionOnInvalidReferenceBehaviorPass::process in vendor/
symfony/ dependency-injection/ Compiler/ CheckExceptionOnInvalidReferenceBehaviorPass.php - You can modify the container here before it is dumped to PHP code.
- CheckExceptionOnInvalidReferenceBehaviorPass::processReferences in vendor/
symfony/ dependency-injection/ Compiler/ CheckExceptionOnInvalidReferenceBehaviorPass.php
File
- vendor/
symfony/ dependency-injection/ Compiler/ CheckExceptionOnInvalidReferenceBehaviorPass.php, line 40
Class
- CheckExceptionOnInvalidReferenceBehaviorPass
- Checks that all references are pointing to a valid service.
Namespace
Symfony\Component\DependencyInjection\CompilerCode
private function processDefinition(Definition $definition) {
$this
->processReferences($definition
->getArguments());
$this
->processReferences($definition
->getMethodCalls());
$this
->processReferences($definition
->getProperties());
}