Using PHPed 5.95 Build 5988.
I have two simple namespaced classes:
<?php
namespace Test\Classes;
class Class1 {
public $x;
public function do_x() {
}
} |
<?php
namespace Test\Classes;
class Class2 {
public $y;
public function do_y(){
}
} |
Code complete gets confused in a third class in the following code. Expected suggested method should be $var->do_x()
This happens with or without @var
Could someone be kind as to try to replicate this? Am I doing something fundamentally wrong here or is it something else?