File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -560,17 +560,17 @@ both strings or address objects::
560
560
// ...
561
561
;
562
562
563
- .. versionadded :: 7.2
564
-
565
- Support for non-ASCII email addresses (e.g. ``jânë.dœ@ëxãmplę.com ``)
566
- was introduced in Symfony 7.2.
567
-
568
563
.. tip ::
569
564
570
565
Instead of calling ``->from() `` *every * time you create a new email, you can
571
566
:ref: `configure emails globally <mailer-configure-email-globally >` to set the
572
567
same ``From `` email to all messages.
573
568
569
+ .. versionadded :: 7.2
570
+
571
+ Support for non-ASCII email addresses (e.g. ``jânë.dœ@ëxãmplę.com ``)
572
+ was introduced in Symfony 7.2.
573
+
574
574
.. note ::
575
575
576
576
The local part of the address (what goes before the ``@ ``) can include UTF-8
Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ arbitrary matching logic:
298
298
# config/routes.yaml
299
299
contact :
300
300
path : /contact
301
- controller : ' App\Controller\DefaultController::contact'
301
+ controller : App\Controller\DefaultController::contact
302
302
condition : " context.getMethod() in ['GET', 'HEAD'] and request.headers.get('User-Agent') matches '/firefox/i'"
303
303
# expressions can also include configuration parameters:
304
304
# condition: "request.headers.get('User-Agent') matches '%app.allowed_browsers%'"
@@ -307,7 +307,7 @@ arbitrary matching logic:
307
307
308
308
post_show :
309
309
path : /posts/{id}
310
- controller : ' App\Controller\DefaultController::showPost'
310
+ controller : App\Controller\DefaultController::showPost
311
311
# expressions can retrieve route parameter values using the "params" variable
312
312
condition : " params['id'] < 1000"
313
313
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ The serializer uses a two-step process when (de)serializing objects:
238
238
></object >
239
239
240
240
In both directions, data is always first converted to an array. This splits
241
- the process in two seperate responsibilities:
241
+ the process in two separate responsibilities:
242
242
243
243
Normalizers
244
244
These classes convert **objects ** into **arrays ** and vice versa. They
You can’t perform that action at this time.
0 commit comments