Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 402f403

Browse filesBrowse files
committed
Fix iterrator in ServiceConfigurator
1 parent ffa3316 commit 402f403
Copy full SHA for 402f403

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎src/Symfony/Component/DependencyInjection/Loader/Configurator/AbstractServiceConfigurator.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/DependencyInjection/Loader/Configurator/AbstractServiceConfigurator.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public function __destruct()
3232
{
3333
// default tags should be added last
3434
foreach ($this->defaultTags as $name => $attributes) {
35-
foreach ($attributes as $attributes) {
36-
$this->definition->addTag($name, $attributes);
35+
foreach ($attributes as $attribute) {
36+
$this->definition->addTag($name, $attribute);
3737
}
3838
}
3939
$this->defaultTags = [];

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.