Community
Participate
Working Groups
Have a php 5.4 project created. Create a php file in the project: <?php trait A { public function smallTalk() { echo 'a'; } public function bigTalk() { echo 'A'; } } trait B { public function smallTalk() { echo 'b'; } public function bigTalk() { echo 'B'; } } class Talker { use A, B { B::| // <-- Case 1. Invoke content Assist at cursor position"|" A::bigTalk insteadof | // <-- Case 2. Invoke content Assist at cursor position"|" Expected: Case 1: smallTalk() bigTalk() should be suggested. Case 2: B should be suggested. Actual: The mentioned items are not listed in Content Assist
fixed
Verified. Closing.