Skip to content

Commit 26118b5

Browse files
committed
Merge branch '6.4' into 7.0
* 6.4: [DotEnv] Update configuration.rst Revert "[AssetMapper] Fixing path"
2 parents 8275d65 + e9721cc commit 26118b5

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
@@ -1063,7 +1063,7 @@ already existing ``.env`` files).
10631063
# .env (or .env.local)
10641064
APP_ENV=prod
10651065
1066-
# .env.prod (or .env.local.prod) - this will fallback on the loaders you defined
1066+
# .env.prod (or .env.prod.local) - this will fallback on the loaders you defined
10671067
APP_ENV=
10681068
10691069
.. _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
@@ -1437,6 +1437,13 @@ render the email before calling ``$mailer->send($email)``::
14371437

14381438
$mailer->send($email);
14391439
}
1440+
<<<<<<< HEAD
1441+
=======
1442+
=======
1443+
Thanks to this, instead of being delivered immediately, messages will be sent to
1444+
the transport to be handled later (see :ref:`messenger-worker`).
1445+
>>>>>>> 5.4
1446+
>>>>>>> 6.3
14401447

14411448
You can configure which bus is used to dispatch the message using the ``message_bus`` option.
14421449
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
@@ -2847,6 +2847,8 @@ annotation changes). For performance reasons, it is recommended to disable
28472847
debug mode in production, which will happen automatically if you use the
28482848
default value.
28492849

2850+
.. _configuration-framework-serializer:
2851+
28502852
serializer
28512853
~~~~~~~~~~
28522854

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)