You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 8, 2023. It is now read-only.
Hi,
In Java Styles enumeration implementations, members are called with static methods that are not explicitly declared. So, in IDE like Eclipse PHP or other, those methods are not listed for auto-completion.
I found that adding appropriate PHPDocumentor doc blocks resolves this issue.
For example, if you have those members in a Exemple class extending AbstractMultiton:
Exemple::FOO()
Exemple::BAR()
You can add this doc block:
/**
* @method static Exemple FOO()
* @method static Exemple BAR()
*/
class Exemple extends AbstractMultiton
{
(...)
}