We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f18cc commit 50cc838Copy full SHA for 50cc838
build.xml
@@ -23,6 +23,7 @@
23
<antcall target="phpmd"/>
24
<antcall target="phpcpd"/>
25
<antcall target="phpcs"/>
26
+ <antcall target="phpdoc"/>
27
</parallel>
28
</target>
29
@@ -61,6 +62,13 @@
61
62
</exec>
63
64
65
+ <!-- Generate API documentation -->
66
+ <target name="phpdoc">
67
+ <exec executable="phpdoc">
68
+ <arg line="-d PHP -t build/api" />
69
+ </exec>
70
+ </target>
71
+
72
<target name="phpcb">
73
<exec executable="phpcb">
74
<arg line="--log ${basedir}/build/logs
0 commit comments