freescout/freescout-dist/vendor/symfony/routing/Tests/Fixtures/validpattern.yml

14 lines
404 B
YAML
Raw Permalink Normal View History

2023-12-22 19:40:32 +00:00
blog_show:
path: /blog/{slug}
defaults: { _controller: "MyBundle:Blog:show" }
host: "{locale}.example.com"
requirements: { 'locale': '\w+' }
methods: ['GET','POST','put','OpTiOnS']
schemes: ['https']
condition: 'context.getMethod() == "GET"'
options:
compiler_class: RouteCompiler
blog_show_inherited:
path: /blog/{slug}