Skip to content

Commit 98ef709

Browse files
committed
Merge branch '7.0' into 7.1
* 7.0: [DotEnv] Update configuration.rst Revert "[AssetMapper] Fixing path"
2 parents 9f9a0fb + 26118b5 commit 98ef709

File tree

5 files changed

+18
-2
lines changed

5 files changed

+18
-2
lines changed

configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ already existing ``.env`` files).
11101110
# .env (or .env.local)
11111111
APP_ENV=prod
11121112
1113-
# .env.prod (or .env.local.prod) - this will fallback on the loaders you defined
1113+
# .env.prod (or .env.prod.local) - this will fallback on the loaders you defined
11141114
APP_ENV=
11151115
11161116
.. _configuration-accessing-parameters:

frontend/asset_mapper.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ file:
850850
asset_mapper:
851851
paths:
852852
- assets/
853-
- vendor/babdev/pagerfanta-bundle/Resources/public/css/
853+
- vendor/some/package/assets
854854
855855
Then try the command again.
856856

mailer.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1473,6 +1473,13 @@ render the email before calling ``$mailer->send($email)``::
14731473

14741474
$mailer->send($email);
14751475
}
1476+
<<<<<<< HEAD
1477+
=======
1478+
=======
1479+
Thanks to this, instead of being delivered immediately, messages will be sent to
1480+
the transport to be handled later (see :ref:`messenger-worker`).
1481+
>>>>>>> 5.4
1482+
>>>>>>> 6.3
14761483

14771484
You can configure which bus is used to dispatch the message using the ``message_bus`` option.
14781485
You can also set this to ``false`` to call the Mailer transport directly and

reference/configuration/framework.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2860,6 +2860,8 @@ annotation changes). For performance reasons, it is recommended to disable
28602860
debug mode in production, which will happen automatically if you use the
28612861
default value.
28622862

2863+
.. _configuration-framework-serializer:
2864+
28632865
serializer
28642866
~~~~~~~~~~
28652867

serializer/custom_encoders.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ create your own encoder that uses the
4646
}
4747
}
4848

49+
.. tip::
50+
51+
If you need access to ``$context`` in your ``supportsDecoding`` or
52+
``supportsEncoding`` method, make sure to implement
53+
``Symfony\Component\Serializer\Encoder\ContextAwareDecoderInterface``
54+
or ``Symfony\Component\Serializer\Encoder\ContextAwareEncoderInterface`` accordingly.
55+
4956
Registering it in your app
5057
--------------------------
5158

0 commit comments

Comments
 (0)