Home » Tools and Utilities » PhpDocumentor » Bug #6844
phpDocumentor doesn't show classes in file
Details
| Submitted | 2006-02-20 18:59 UTC |
|---|---|
| From | p dot bodnar at centrum dot cz |
| Assigned | cellog |
| Status | Closed |
| Package | PhpDocumentor |
| PHP Version | 4.3.9 |
| OS | Win XP |
| Roadmaps | (Not assigned) |
Comments
[2006-02-20 18:59 UTC] p dot bodnar at centrum dot cz
Description:
------------
PhpDocumentor doesn't output -classes included in a file- in the generated documentation.
Test script:
---------------
file example.php:
<?php
/**
* @package example
*/
/**
* @package example
*/
class Example {
}
?>
Expected result:
----------------
documentation generated for file example.php:
...
Classes:
- Example
...
Actual result:
--------------
documentation generated for file example.php:
...
Classes:
...
[2006-02-20 19:04 UTC] p dot bodnar at centrum dot cz
I had this (similar) problem even with a previous version of phpDocumentor - classes list appeared only in files of the "default" package.
[2006-02-22 20:19 UTC] p dot bodnar at centrum dot cz
It seems to be a bug in docBuilder - I tried to use a
CONFIGURATION FILE for setting the options of generating and it works - the classes are displayed! :-) When I set the same options in docBuilder MANUALLY, then this bug appears...