Skip to content

Commit 186d5e8

Browse files
committed
Removed obsolete array key "id" on "to_email" configuration parameter parsing.
1 parent d473e5f commit 186d5e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function getConfigTreeBuilder()
9696
->prototype('scalar')->end()
9797
->beforeNormalization()
9898
->ifString()
99-
->then(function($v) { return array('id' => $v); })
99+
->then(function($v) { return array($v); })
100100
->end()
101101
->end()
102102
->scalarNode('subject')->end() // swift_mailer and native_mailer

0 commit comments

Comments
 (0)