bmewburn / vscode-intelephense

PHP intellisense for Visual Studio Code
https://intelephense.com
Other
1.61k stars 94 forks source link

Optional array shape key not indicated in hover #2822

Closed bmewburn closed 3 months ago

bmewburn commented 6 months ago
<?php

/**
 * @param array{
 *   host:string,
 *   port?:string|int 
 * } $config 
 */
function testHover($config) {
    return $config;
}

Screenshot from 2024-03-19 14-02-37