Is it possible to pull out the documentation for private methods with phpDocumentor?

I realize this wouldn't normally be done, but in my current project it would be useful.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Use -pp option.

http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#using.command-line.parseprivate

link|improve this answer
I've tried that, but it didn't work. From reading into it, it only shows methods that have a tag @access private, but doesn't show methods that are private – SystemicPlural Jun 23 '11 at 18:02
If --parseprivate is failing to pick up private methods just based on the 'private' keyword in the code, then that's a bug. @access tags should not be required for PHP5 code. – ashnazg Jun 24 '11 at 14:47
@ashnazg & @Charles I tried all sorts of things yesterday with --parseprivate, with no joy, then today I load up and suddenly it is working. Something must have been stuck in a cache somewhere. Thanks for your help. – SystemicPlural Jun 24 '11 at 15:20
feedback

Your Answer

 
or
required, but never shown

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