Is there a way to customize php storm's way of generating the docblocks ?
By default, I would like to have unknown type vars considered as strings.
This is the default way of generating docblock (using php storm 4.01)
/**
* @param $name
*/
private function test($name){
}
And I would like this instead if possible :
/**
* @param string $name
*/
private function test($name){
}