GNOME Bugzilla – Bug 640463
PHP class ignored if last use statement has root namespace
Last modified: 2011-03-28 14:19:33 UTC
When generating docs from namespaced PHP sources, no documentation is generated for class files where the last use statement contains a class which is not in a namespace itself. Examples: --- <?php namespace Some\Where; use DateTime; class Foo { } --- --- <?php namespace Some\Where; use Another\One; use DateTime; class Foo { } --- The following snippets work as expected: --- <?php namespace Some\Where; use DateTime; use Another\One; class Foo { } --- --- <?php namespace Some\Where; use Another\One; class Foo { } ---
Confirmed. Should be fixed in the next subversion update.
*** Bug 642021 has been marked as a duplicate of this bug. ***
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.7.4. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.