Hi forum,
Consider the following code:
class SomeClass
{
public function public_func()
{
$this->
if(true)
{
die('The "if statement" and this line is just some dummy code but it needs to be here to demonstrate the glitch ');
}
}
private function private_func() {}
protected function protected_func() {}
}
|
Placing the cursor right after "$this->" and hitting ctrl+space will not bring up "private_func" and "protected_func". Might be something the developers what to check out as well while they fix the problem with code completion and static functions
-
Best regards, Caspar