We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fastjump and suggest for relative path doesn't work if we include another routing file:
# routing.yml info_monitoring: prefix: /some/ resource: routing_info.yml
or
# routing.yml info_monitoring: prefix: /some/ resource: 'routing_info.yml'
But this works fine:
info_monitoring2: prefix: /some/ resource: @SomeBundle/Resources/config/routing_info.yml
The text was updated successfully, but these errors were encountered:
Same story for relative path in import. No suggest, no click to jump.
# yml imports: - { resource: '../common/config.yml' } - { resource: 'parameters.yml' } - { resource: 'security.yml' }
# xml <imports> <import resource="repositories.xml"/> <import resource="health_checkers.xml"/> <import resource="web.xml"/> </imports>
See http://symfony.com/doc/current/cookbook/configuration/configuration_organization.html
Sorry, something went wrong.
add "resource" file references for current directory scope #517
18fbbc8
done
Thanks
No branches or pull requests
Fastjump and suggest for relative path doesn't work if we include another routing file:
or
But this works fine:
The text was updated successfully, but these errors were encountered: