vote up 0 vote down star

I think my eclipse's ctrl+clicking links might benefit greatly...

Edit: I'm using eclipse PDT.

Edit 2: I'm very happy with the solution of putting docblocks before functions (and variables) with an @return or @var statement, I've just updated the documentation of my app and now eclipse is showing me what functions are available to what objects!

Awesome.

flag

Off topic, I've noticed that NetBeans 6.5 is a lot smarter with code completion and overall code analysis than the Eclipse PHP-aware stuff I've tried – Henrik Paul Nov 21 '08 at 6:26

3 Answers

vote up 6 vote down check
// [...]
/**
 * Return the Request object
 *
 * @return Zend_Controller_Request_Abstract
 */
public function getRequest()
{
    return $this->_request;
}
// [...]

works perfectly with Eclipse PDT. Which plugin do you use?

link|flag
vote up 2 vote down

Short answer: no.

Long answer: consider adding docblocks with @returns declarations.

link|flag
Nope, docblock didn't help. – Dean Nov 21 '08 at 6:26
It works for me. What eclipse plugin are you using for php development? – azkotoki Nov 21 '08 at 7:37
It's @return -- not @returns – troelskn Nov 21 '08 at 9:20
Strange, after some time it did work. But I didn't see a "building" status bar at the bottom or anything like that. Thanks! – Dean Nov 22 '08 at 1:05
vote up 0 vote down

The only way to hint return type in PHP is to use a good IDE like Eclispe PDT or Zend Studio with standard comment block. PHP simply can n not predict return type because it is dynamically typed language so type checking is done in the run time unlike for the statically typed languages like C#, JAVA and C++.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.