I am trying to document the private variable in phpdoc but its not documenting . Here is my code.

class Content
{
    /**
    * simple db class variable
    * @access private
    */
    var $_db=null; // db
    private $_s3=null; //  s3

    /**
    * queue for mainting session queue1
    */
    public $queue=array();**
}

The $_db and $_s3 both are not coming in documentation.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

That's what supposed to happen - setting @access private prevents the following code block from appearing in the documentation.

To get it to appear you need to use the command line switch --parseprivate

See http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_tags.access.pkg.html

link|improve this answer
It's actually -pp or --parseprivate, but otherwise this answer is correct. Private items are not included in documentation by default. – ashnazg Mar 2 '11 at 15:05
Thanks for error pickup, I've corrected the answer. – darklion Mar 3 '11 at 3:46
feedback

Your Answer

 
or
required, but never shown

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