It would be nice to be able to complete while editing a class calling methods within itself or a parent.
<?php
class moo {
function zoo() {
return 'moo';
}
}
class blah extends moo {
function goo($bee, $zee) {
// do something
return $bee;
}
static function slide() {
return true;
}
function boo() {
$this->
self::
parent::
}
}