PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Tools and Utilities » PhpDocumentor » Bug #6844

phpDocumentor doesn't show classes in file

Details

Submitted2006-02-20 18:59 UTC
Fromp dot bodnar at centrum dot cz
Assignedcellog
StatusClosed
PackagePhpDocumentor
PHP Version4.3.9
OSWin 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...