Skip to content

Commit eaa2fc7

Browse files
committed
Merge branch '5.4' into 6.0
* 5.4: remove display names from envelope headers Fix use statement Remove reference to a removed configuration key [Workflow] fix image labels
2 parents 5cdbef5 + 1c7efeb commit eaa2fc7

File tree

4 files changed

+1
-18
lines changed

4 files changed

+1
-18
lines changed
296 Bytes
Loading

bundles/extension.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This is how the extension of an AcmeHelloBundle should look like::
3434
namespace Acme\HelloBundle\DependencyInjection;
3535

3636
use Symfony\Component\DependencyInjection\ContainerBuilder;
37-
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
37+
use Symfony\Component\DependencyInjection\Extension\Extension;
3838

3939
class AcmeHelloExtension extends Extension
4040
{

mailer.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,6 @@ and headers.
494494
mailer:
495495
envelope:
496496
sender: 'fabien@example.com'
497-
# sender: 'Fabien <fabien@example.com>' (use this to add a display name)
498497
recipients: ['foo@example.com', 'bar@example.com']
499498
headers:
500499
From: 'Fabien <fabien@example.com>'
@@ -517,8 +516,6 @@ and headers.
517516
<framework:mailer>
518517
<framework:envelope>
519518
<framework:sender>fabien@example.com</framework:sender>
520-
<!-- use this to add a display name:
521-
<framework:sender>Fabien &lt;fabien@example.com&gt;</framework:sender> -->
522519
<framework:recipients>foo@example.com</framework:recipients>
523520
<framework:recipients>bar@example.com</framework:recipients>
524521
</framework:envelope>
@@ -539,7 +536,6 @@ and headers.
539536
$mailer
540537
->envelope()
541538
->sender('fabien@example.com')
542-
// ->sender('Fabien <fabien@example.com>') (use this to add a display name)
543539
->recipients(['foo@example.com', 'bar@example.com'])
544540
;
545541

reference/configuration/framework.rst

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2440,19 +2440,6 @@ Whether or not to enable validation support.
24402440
This option will automatically be set to ``true`` when one of the child
24412441
settings is configured.
24422442

2443-
.. _reference-validation-cache:
2444-
2445-
cache
2446-
.....
2447-
2448-
**type**: ``string``
2449-
2450-
The service that is used to persist class metadata in a cache. The service
2451-
has to implement the :class:`Symfony\\Contracts\\Cache\\CacheInterface`.
2452-
2453-
Set this option to ``validator.mapping.cache.doctrine.apc`` to use the APC
2454-
cache provided by the Doctrine project.
2455-
24562443
.. _reference-validation-enable_annotations:
24572444

24582445
enable_annotations

0 commit comments

Comments
 (0)