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.