rd_v_s created NETBEANS-1291:
--------------------------------

             Summary: PHP DOC : autocomplete array of static dosen't work
                 Key: NETBEANS-1291
                 URL: https://issues.apache.org/jira/browse/NETBEANS-1291
             Project: NetBeans
          Issue Type: Improvement
          Components: cnd - Code Completion
    Affects Versions: 9.0
         Environment: Windows 10
            Reporter: rd_v_s


Hi,

the autocomplete dosen't work on array of static.

That doesn't support self and $this too.

And there is 2 way for document return of table : array<T> or T[]

The phpdoc documentation : http://docs.phpdoc.org/guides/types.html

See exemple below :
{code:java}
abstract class A {

  /**
   * return array of class
   * @return static[]
   */
  function returnArrayOfClass() {
  }

}

class B extends A {

  public $b;

  /**
   * return array of class
   * @return B[]
   */
  function returnArrayOfClassB() {
  }

}

$oB = new B();
$aB = $oB->returnArrayOfClass();
foreach ($aB as $b) {
  $b->b;//dosen't autocomplete b
}

$aB2 = $oB->returnArrayOfClassB();
foreach ($aB2 as $b2) {
  $b2->b; //autocomplete b
}
{code}
Regards,



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

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

Reply via email to