It would be nice if I class that implements an interface (or extends an abstract) could "code complete from template" given the interface definition.
For example:-
Assume i.php contains:-
interface myi {
public function ia();
public function ib();
}
|
And then in another file I do:-
class myclass implements myi {
// place cursor here
}
|
Now, hitting a single short-cut key would insert into myclass automagically the code templates for the interface functions based on my interface definition:-
class myclass implements myi {
public function ia() {
}
public function ib() {
}
}
|