Community
Participate
Working Groups
Consider the following code: ------------------------ <?php class toto { public function __toString() { echo "toto"; } public function myfunc() { $this-> // No CA for magic methods here } } $o = new toto (); $o-> // No CA for magic methods here ?> ------------------------
Hi Roy I saw the following code in ClassMethodsStrategy(line 93) if (!magicMethods.contains(method.getElementName()) && !isFiltered(method, concreteContext)) { result.add(method); } Why?Is it intentional?
fixed in head,and all magic methods will be listed in the bottom of the proposal list.
[Petyo Tanchev] Tested on 2.2.1 SR1 Fixed