PHP documentation for the JetBrains PHPStorm 3.0 mouse

Is it possible to set the mouse display to represent the documentation of a method / class in PHPStorm 3.0?

So, if I start typing the name of the method, I see it autocomplete, but somewhere there is no PHP documentation?

/**
 * Some function.
 *
 * @param $status_code  Status code
 * @param null $message Message
 */
public function error($status_code, $message = NULL) {
    echo $status_code . " - " . $message;
}
+5
source share
2 answers

This is possible to explicitly complete the code:

documentation

However , the freeze documentation is not yet supported .

+6
source

I know the name says 3.0 , but for anyone looking for this question on PHPStorm 7, you can do this by going to File > Settings, in the IDE Settings section go to Editor. Then in the right pane ""

+11

All Articles