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/07/03 15:08:00 UTC

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

     [ https://issues.apache.org/jira/browse/NETBEANS-4509?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tomáš Procházka resolved NETBEANS-4509.
---------------------------------------
    Fix Version/s: 12.1
       Resolution: Fixed

PR was merged.

> 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
>            Assignee: Tomáš Procházka
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 12.1
>
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> 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