You are here

public function RemoveUnusedDefinitionsPass::setRepeatedPass in Service Container 7

Same name and namespace in other branches
  1. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/RemoveUnusedDefinitionsPass.php \Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass::setRepeatedPass()

Sets the RepeatedPass interface.

Parameters

RepeatedPass $repeatedPass:

Overrides RepeatablePassInterface::setRepeatedPass

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/RemoveUnusedDefinitionsPass.php, line 28

Class

RemoveUnusedDefinitionsPass
Removes unused service definitions from the container.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function setRepeatedPass(RepeatedPass $repeatedPass) {
  $this->repeatedPass = $repeatedPass;
}