Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4280f21

Browse files
committed
[FrameworkBundle] Fix tests
That are not synchronized with code anymore (after merge in upper branches)
1 parent 6658316 commit 4280f21

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/mailer_with_dsn.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
'sender' => '[email protected]',
1111
'recipients' => ['[email protected]', '[email protected]'],
1212
],
13+
'headers' => [
14+
'from' => '[email protected]',
15+
16+
'foo' => 'bar',
17+
],
1318
],
1419
]);
1520
};

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/mailer_with_transports.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
'sender' => '[email protected]',
1414
'recipients' => ['[email protected]', '[email protected]'],
1515
],
16+
'headers' => [
17+
'from' => '[email protected]',
18+
19+
'foo' => 'bar',
20+
],
1621
],
1722
]);
1823
};

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/mailer_with_transports.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
<framework:recipients>[email protected]</framework:recipients>
1616
<framework:recipients>[email protected]</framework:recipients>
1717
</framework:envelope>
18+
<framework:header name="from">[email protected]</framework:header>
19+
<framework:header name="bcc">[email protected]</framework:header>
20+
<framework:header name="foo">bar</framework:header>
1821
</framework:mailer>
1922
</framework:config>
2023
</container>

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/mailer_with_transports.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,7 @@ framework:
88
recipients:
99
1010
11+
headers:
12+
13+
14+
foo: bar

0 commit comments

Comments
 (0)