I have a large code library for which I am trying to create hierarchical documentation. The project does not use namespaces, but uses @package instead.
I just tried to create docs as a test from the following file with phpDocumentor2:
<?php
class Something{
function try_this(){
}
}
Although, according to the @package document, JustAn \ Example should be the equivalent of the JustAn \ Example namespace, I have found that it is not.
When I use namespaces, the resulting documentation looks like this:

When I use the @package notation, the result looks like this (although it recognizes the package notation - this is shown on the full class information page):

I am looking for a way to get a hierarchical result without rewriting the code in order to use the "real" namespaces.