[Bug]: Routing doesn't work when generating Bundles with yaml config
fashxp opened this issue · 4 comments
fashxp commented
Expected behavior
routing works
Actual behavior
routing doesn't work
Steps to reproduce
- create bundle
- choose yaml configuration format
- try to open test controller route
fashxp commented
You mean 1.1?
Not mandatory, also can be part of a bugfix release
jkovacevic992 commented
From what I understand, it generates something like this:
test_homepage:
path: /test
defaults: { _controller: TestBundle\Controller\DefaultController:indexAction }
As you can see, one colon is missing, it should be:
test_homepage:
path: /test
defaults: { _controller: TestBundle\Controller\DefaultController::indexAction }
aryaantony92 commented
Fixed by #13