Generate all my documentation
Only generates properties documentation
phpdoc in my project dir.Include as many relevant details about the environment you experienced the bug in and how to reproduce it.
Since many issue might only occur on a specific code base it would be very helpfull if you link to your project
or add any code that is involved in to the issue.
My code, for example Type.php, has methods in addition to properties, but only generates:

Im using this config:
<?xml version="1.0" encoding="UTF-8" ?>
<phpdocumentor>
<title>PHP: Nelson Martell Library</title>
<parser>
<visibility>public,protected</visibility>
<target>output/doc</target>
</parser>
<transformer>
<target>docs/api</target>
</transformer>
<files>
<directory>src</directory>
<file>vendor/cakephp/utility/Text.php</file>
</files>
</phpdocumentor>
it seems that this issue is caused by the defined visibility. I'm investigating this issue to see how it should be fixed.
Most helpful comment
it seems that this issue is caused by the defined visibility. I'm investigating this issue to see how it should be fixed.