Skip to content

Commit 75dd709

Browse files
committed
Fix iterrator in ServiceConfigurator
1 parent 52866e2 commit 75dd709

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Loader/Configurator/AbstractServiceConfigurator.php

Lines 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)