deep-assoc-completion
deep-assoc-completion copied to clipboard
Add syntax highlighting for multiline array PHPDoc
Example:
/**
* @param array{
* a: int,
* b: int
* } $arr
*/
function c(array $arr) {}
Should be highlighted like the one-line syntax:
/**
* @param array{a: int,b: int} $arr
*/
function c(array $arr) {}
Related: #132
It would indeed be nice, though I gave up as I did not manage to make it work with Language Injections ;c