The problem is that I would like to get a little comfortable while I am coding PHP in Netbeans.
When edit cursor is in the middle of the source of long metod
I would like to press a key shortcut to jump to the beginning of that method.
Eg:
public function doStuff($arg1,$arg2) <--- I want to jump here...
{
$a = $b;
$b = $c;
$c = $d;
$d = $e; <--- cursor is here
.....
}
This works fine for me :
Ctrl+7+return