Lagasss
Lagasss

Reputation: 11

Is there a way to remove the default package called application showing in PHPDocumentator?

PHPDoc shows a default application package, and cannot figure out how to remove it.

Screen cap here

Upvotes: 1

Views: 129

Answers (1)

Nathanael Dewhurst
Nathanael Dewhurst

Reputation: 1

You can use the --defaultpackagename command line option, or the <default-package-name> tag in your config file.

Examples for your use case

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

Related Questions