Hi Dimitre,
I have just installed build (3386) as the latest version as I had to change harddrive so lost (3380).
When I installed this the way the code completion works has changed and does not work as it did before.
[list=]I am unable to access functions of a parent class if the child class extends its parent[/list]
[list=]Within a function in a class you can only access other functions preceding the one you are working in, even if the function exists. See example below.[/list]
function function_one(){
$this->function_two(); // this will not code complete
}
function function_two(){
$this->function_one(); // this will code complete as one is declared above it
}
|
I have also tested this on the evaluation build 3391 and the problem still exists
Regards
Barry