Skip to content

Commit e8c9927

Browse files
committed
Merge branch '5.4' into 6.2
* 5.4: Update routing.rst
2 parents 5f42991 + e6f9e62 commit e8c9927

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

routing.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2084,8 +2084,8 @@ locale.
20842084
resource: '../../src/Controller/'
20852085
type: annotation
20862086
host:
2087-
en: 'https://www.example.com'
2088-
nl: 'https://www.example.nl'
2087+
en: 'www.example.com'
2088+
nl: 'www.example.nl'
20892089
20902090
.. code-block:: xml
20912091
@@ -2096,8 +2096,8 @@ locale.
20962096
xsi:schemaLocation="http://symfony.com/schema/routing
20972097
https://symfony.com/schema/routing/routing-1.0.xsd">
20982098
<import resource="../../src/Controller/" type="annotation">
2099-
<host locale="en">https://www.example.com</host>
2100-
<host locale="nl">https://www.example.nl</host>
2099+
<host locale="en">www.example.com</host>
2100+
<host locale="nl">www.example.nl</host>
21012101
</import>
21022102
</routes>
21032103
@@ -2108,8 +2108,8 @@ locale.
21082108
return static function (RoutingConfigurator $routes): void {
21092109
$routes->import('../../src/Controller/', 'annotation')
21102110
->host([
2111-
'en' => 'https://www.example.com',
2112-
'nl' => 'https://www.example.nl',
2111+
'en' => 'www.example.com',
2112+
'nl' => 'www.example.nl',
21132113
])
21142114
;
21152115
};

0 commit comments

Comments
 (0)