@@ -283,11 +283,13 @@ If ``relative`` is enabled, it'll create a path relative to the current path.
283
283
284
284
.. code-block :: twig
285
285
286
+ {# consider that the app defines an 'app_blog' route with the path '/blog/{page}' #}
287
+
286
288
{{ path(name = 'app_blog', parameters = {page: 3}, relative = false) }}
287
- {# output (depending on the route configuration) : /blog/3 or /blog?page= 3 #}
289
+ {# output: /blog/3 #}
288
290
289
291
{{ path(name = 'app_blog', parameters = {page: 3}, relative = true) }}
290
- {# output (depending on the route configuration) : blog/3 or ?page= 3 #}
292
+ {# output: blog/3 #}
291
293
292
294
.. seealso ::
293
295
@@ -313,13 +315,13 @@ Returns the absolute URL (with scheme and host) for the given route. If
313
315
314
316
.. code-block :: twig
315
317
318
+ {# consider that the app defines an 'app_blog' route with the path '/blog/{page}' #}
319
+
316
320
{{ url(name = 'app_blog', parameters = {page: 3}, schemeRelative = false) }}
317
- {# output (depending on the route configuration): http://example.org/blog/3
318
- or http://example.org/blog?page=3 #}
321
+ {# output: http://example.org/blog/3 #}
319
322
320
323
{{ url(name = 'app_blog', parameters = {page: 3}, schemeRelative = true) }}
321
- {# output (depending on the route configuration): //example.org/blog/3
322
- or //example.org/blog?page=3 #}
324
+ {# output: //example.org/blog/3 #}
323
325
324
326
.. seealso ::
325
327
@@ -784,7 +786,7 @@ The above example will be rendered as:
784
786
785
787
.. code-block :: html
786
788
787
- <abbr title =" App\Controller\ProductController" >ProductController</abbr >
789
+ <abbr title =" App\Controller\ProductController" >ProductController</abbr >::list()
788
790
789
791
format_args
790
792
~~~~~~~~~~~
0 commit comments