1
0
mirror of synced 2025-01-17 22:11:41 +03:00

Initial entry.

This commit is contained in:
Jonathan.Wage 2007-08-31 23:06:28 +00:00
parent 3fd01a1523
commit 51bba3639e

9
generate_api_docs.php Normal file
View File

@ -0,0 +1,9 @@
<?php
$output_directory = "api_documentation/trunk";
$parse_directory = "lib";
$template = 'HTML:Smarty:Doctrine';
$title = 'Doctrine Documentation';
$command = "phpdoc -pp on -s on -dn Doctrine -d $parse_directory -ti $title -t $output_directory -o $template";
@exec($command);