Skip to content

Commit f3fb435

Browse files
committed
Merge branch '6.2' into 6.3
* 6.2: Update routing.rst
2 parents 0b4e088 + e8c9927 commit f3fb435

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
@@ -2113,8 +2113,8 @@ locale.
21132113
resource: '../../src/Controller/'
21142114
type: annotation
21152115
host:
2116-
en: 'https://www.example.com'
2117-
nl: 'https://www.example.nl'
2116+
en: 'www.example.com'
2117+
nl: 'www.example.nl'
21182118
21192119
.. code-block:: xml
21202120
@@ -2125,8 +2125,8 @@ locale.
21252125
xsi:schemaLocation="http://symfony.com/schema/routing
21262126
https://symfony.com/schema/routing/routing-1.0.xsd">
21272127
<import resource="../../src/Controller/" type="annotation">
2128-
<host locale="en">https://www.example.com</host>
2129-
<host locale="nl">https://www.example.nl</host>
2128+
<host locale="en">www.example.com</host>
2129+
<host locale="nl">www.example.nl</host>
21302130
</import>
21312131
</routes>
21322132
@@ -2137,8 +2137,8 @@ locale.
21372137
return static function (RoutingConfigurator $routes): void {
21382138
$routes->import('../../src/Controller/', 'annotation')
21392139
->host([
2140-
'en' => 'https://www.example.com',
2141-
'nl' => 'https://www.example.nl',
2140+
'en' => 'www.example.com',
2141+
'nl' => 'www.example.nl',
21422142
])
21432143
;
21442144
};

0 commit comments

Comments
 (0)