8000 [DependencyInjection] resolve circular reference by xabbuh · Pull Request #14446 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[DependencyInjection] resolve circular reference #14446

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[DependencyInjection] resolve circular reference
This issue has been fixed in #11422. Due to a bad merge in
3bed1b7 it partially appeared again in
Symfony 2.6 or higher.
  • Loading branch information
xabbuh committed Apr 22, 2015
commit 8b3b3ce18a0566f34c8d11099ef33a13feb40c9e
2 changes: 0 additions & 2 deletions src/Symfony/Component/DependencyInjection/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ class Container implements IntrospectableContainerInterface
public function __construct(ParameterBagInterface $parameterBag = null)
{
$this->parameterBag = $parameterBag ?: new ParameterBag();

$this->set('service_container', $this);
}

/**
Expand Down
0