Reputation: 5166
I have installed Aptana Studio 3, set my workspace as C:\wamp\www
and set project nature only to PHP - primary
. Everything is working (for ex. autocomplete from extended class) but PHP documentation simply is not working. I added some function like
/**
* Test
*/
public function error($status_code, $message = null) {
....
}
but when I hover it (I saved the file) I get No available documentation
? Where is the problem? :/
I'm on Windows 7 32-bit.
Upvotes: 4
Views: 1708
Reputation: 3838
The hover will not work when you are on the error
word at the function declaration (a bug).
It should work for you when you call the error
function. You should see the documentation-hover when you code assist, and also see similar info when you hover the word.
Upvotes: 1