I use Eclipse PDT and phpDoc.

I would like the warnings of phpDoc to show up in the editor, just like other "validation" tools. This would help the programmer team to create better documentation.

Is there a way to do that ?

Thanks.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

There's a useful tool for enforcing coding standards in PHP called PHP CodeSniffer.

It includes prebuilt rules to enforce docblock requirements. I'm sure if the provided rules aren't exactly what you need it would be relative easy to extend your own rules.

There's a prebuilt integration with Eclipse that includes some other tools like phpunit at PhpSrc

I've used these tools to enforce coding standards with good results.

link|improve this answer
1  
That's exactly what I ended up doing finally ;). PhpSrc rocks, and I used some of PEAR's coding guidelines for validating PHP docblocks (they have a set of CodeSniffer rules). – Matthieu Mar 28 at 9:43
feedback

if there is a tool that generates these warnings then you can integrate it with the builder mechanism that is available in Eclipse.

This article walks through the builder setup http://www.ibm.com/developerworks/opensource/tutorials/os-eclipse-tools/index.html

link|improve this answer
Way too complicated for my situation, but the answer seems right. Thanks. – Matthieu Jan 27 '11 at 9:39
feedback

Your Answer

 
or
required, but never shown

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