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
origin https://github.com/Haehnchen/idea-php-symfony2-plugin-doc/issues/22
With Symfony 3.3 it is quite common to simplify service definitions from this
services: myservice: class: App\Whatever\MyService
to this:
services: App\Whatever\MyService: ~
The problem currently is that in this case the plugin does not suggest class names. it only does that for the class: definition.
class:
The text was updated successfully, but these errors were encountered:
add class completion for yaml service key to support Symfony 3.3 shor…
8156024
…tcut feature #987
OK services: <caret>: ~ Foobar<caret>: ~ # currently not possible without hacks services: <caret>
Sorry, something went wrong.
No branches or pull requests
origin https://github.com/Haehnchen/idea-php-symfony2-plugin-doc/issues/22
With Symfony 3.3 it is quite common to simplify service definitions from this
to this:
The problem currently is that in this case the plugin does not suggest class names. it only does that for the
class:
definition.The text was updated successfully, but these errors were encountered: