svenkapudija
svenkapudija

Reputation: 5166

PHP documentation mouse-over JetBrains PHPStorm 3.0

Is it possible to set mouse-over view of method/class documentation in PHPStorm 3.0?

So if I start typing some method name, I see its autocompletion, but there is no PHP documentation anywhere?

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

Upvotes: 5

Views: 2374

Answers (2)

Christopher Francisco
Christopher Francisco

Reputation: 16288

I know the title says 3.0, but for anybody looking for this question on PHPStorm 7 you can do this by going to File > Settings, under IDE Settings go to Editor. And then in the right pane, scroll down to the "Other" sub section, and mark Show quick doc on mouse move

Upvotes: 13

CrazyCoder
CrazyCoder

Reputation: 402543

It's possible for explicit code completion:

documentation

However, documentation on hover is not supported yet.

Upvotes: 6

Related Questions