As described in Method Parameter > Hash Tags section, there are many supported types like Entity, Service, ...
However there is no option to autocomplete parameters. When I hit Ctrl+Space inside
$this->container->getParameter()
it suggests me all available parameters. When I tried to make a wrapper for this fuction, like:
protected function getParameter($name) {
return $this->container->getParameter($name);
}
then it stops suggesting. Is it possible to create #Parameter hashtag to handle parameters ?
As described in
Method Parameter > Hash Tagssection, there are many supported types likeEntity,Service, ...However there is no option to autocomplete parameters. When I hit
Ctrl+Spaceinsideit suggests me all available parameters. When I tried to make a wrapper for this fuction, like:
then it stops suggesting. Is it possible to create
#Parameterhashtag to handle parameters ?