Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How generate phpDoc html from PhpStorm

I've not found how generate html format for phpDoc from PhpStorm IDE.

Or should I only use console for this this task, e.g. like this:

$ phpdoc -d|-f <PATH> -t <PATH> [parameters]
like image 680
Artem Chernov Avatar asked Mar 25 '16 09:03

Artem Chernov


1 Answers

  1. PhpStorm does not have built-in support for PHPDoc or any other doc system (ApiDoc, Doxygen etc) in terms of generating final documentation files.

  2. PhpStorm has External Tools functionality exactly for such situations.

  3. Or you can use any build system (e.g. Phing based on Ant / Gulp / Grunt (both require Node.js) or alike) and create such task there (PhpStorm supports all 3 of them).

like image 163
LazyOne Avatar answered Sep 21 '22 14:09

LazyOne