Skip to content

Commit 1b9fd9d

Browse files
committed
Merge branch '4.4' into 5.1
* 4.4: Remove white space Minor: Fix quotes Minor: Remove extra space in the config example
2 parents 74cd38f + 976d3be commit 1b9fd9d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/serializer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ defines a ``Person`` entity with a ``firstName`` property:
616616
This custom mapping is used to convert property names when serializing and
617617
deserializing objects::
618618

619-
$serialized = $serializer->serialize(new Person("Kévin"), 'json');
619+
$serialized = $serializer->serialize(new Person('Kévin'), 'json');
620620
// {"customer_name": "Kévin"}
621621

622622
Serializing Boolean Attributes

configuration/using_parameters_in_dic.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ be injected with this parameter via the extension as follows::
106106
{
107107
private $debug;
108108

109-
public function __construct($debug)
109+
public function __construct($debug)
110110
{
111111
$this->debug = (bool) $debug;
112112
}

mailer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,7 @@ you have a transport called ``async``, you can route the message there:
975975
async: "%env(MESSENGER_TRANSPORT_DSN)%"
976976
977977
routing:
978-
'Symfony\Component\Mailer\Messenger\SendEmailMessage': async
978+
'Symfony\Component\Mailer\Messenger\SendEmailMessage': async
979979
980980
.. code-block:: xml
981981

0 commit comments

Comments
 (0)