Reputation: 11
PHPDoc shows a default application package, and cannot figure out how to remove it.
Upvotes: 1
Views: 129
Reputation: 1
You can use the --defaultpackagename
command line option, or the <default-package-name>
tag in your config file.
Command line:
phpdoc --defaultpackagename="Actif"
XML config file entry (e.g. phpdoc.dist.xml
):
...
<api>
...
<default-package-name>Actif</default-package-name>
</api>
...
Using either of the above should result in your desired outcome - you should no longer see the empty Application
package, and should only see your Actif
package.
Upvotes: 0