Does anyone know if PHPStorm supports some built-in support for viewing auxiliary autofill or the ability to create a plugin for it. I don't want to use the built-in var definitions for this, as that would be cumbersome if I use a lot of helpers of the kind
$this->inlineScript()->
$this->translate('some translation')->
If I use var definitions, it will end up with something like this, but it really clutters my view:
$inlineScript = $this->inlineScript();
$inlineScript->
$translate = $this->translate();
$translate('some translation')->
source
share