Skip to content

Commit

Permalink
[DependencyInjection] fixed InlineServiceDefinitionsPass to not inlin…
Browse files Browse the repository at this point in the history
…e a service if it's part of the current definition (to avoid an infinite loop)
  • Loading branch information
fabpot committed Dec 29, 2013
1 parent 20a0fe7 commit d650295
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Expand Up @@ -125,6 +125,10 @@ private function isInlineableDefinition(ContainerBuilder $container, $id, Defini
return true;
}

if ($this->currentId == $id) {
return false;
}

$ids = array();
foreach ($this->graph->getNode($id)->getInEdges() as $edge) {
$ids[] = $edge->getSourceNode()->getId();
Expand Down
Expand Up @@ -144,6 +144,21 @@ public function testProcessDoesNotInlineWhenServiceIsPrivateButLazy()
$this->assertSame($ref, $arguments[0]);
}

public function testProcessDoesNotInlineWhenServiceReferencesItself()
{
$container = new ContainerBuilder();
$container
->register('foo')
->setPublic(false)
->addMethodCall('foo', array($ref = new Reference('foo')))
;

$this->process($container);

$calls = $container->getDefinition('foo')->getMethodCalls();
$this->assertSame($ref, $calls[0][1][0]);
}

protected function process(ContainerBuilder $container)
{
$repeatedPass = new RepeatedPass(array(new AnalyzeServiceReferencesPass(), new InlineServiceDefinitionsPass()));
Expand Down

0 comments on commit d650295

Please sign in to comment.