You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Tomáš Procházka (Jira)" <ji...@apache.org> on 2020/06/26 20:43:00 UTC

[jira] [Created] (NETBEANS-4509) PHP - code completion for function returning array

Tomáš Procházka created NETBEANS-4509:
-----------------------------------------

             Summary: PHP - code completion for function returning array
                 Key: NETBEANS-4509
                 URL: https://issues.apache.org/jira/browse/NETBEANS-4509
             Project: NetBeans
          Issue Type: Bug
          Components: php - Editor
    Affects Versions: 12.0
            Reporter: Tomáš Procházka


NetBeans support code completion for array items when their type is specified.
Code completion does not work for methods which have return type {{array}} in signature and specific type in {{@return}} annotation.


In following code methods from {{\SplFileInfo}} are offered for variable {{$file}}.
{code:php}
/**
 * @param \SplFileInfo[] $files
 */
function walkFiles(array $files) {
    foreach ($files as $file) {
        $file-> // Offers methods from \SplFileInfo
    }
}
{code}

In following code is expected same behavior, but no methods are offered.
{code:php}
/**
 * @return \SplFileInfo[]
 */
function getFiles(): array { }

foreach (getFiles() as $file) {
    $file-> // Does not offer methods from \SplFileInfo
}
{code}

If return type is removed from {{getFiles()}} method, then methods are offered for {{$file}}.




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists