Is there a way with Zend Studio to generate new method or property stub ? So that if I,m writing code in a php class like $this->SomeMethod('parameter1',$param2);
and 'SomeMethod' is a new method I want to write I would like to be able to have the IDE generate this for me:
public function SomeMethod($arg1, $arg2) {
caret here
}
But under the 'Source' menu I don't see any option like this. Is there something I'm missing ?