1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/generate_api_docs.php
2007-08-31 23:06:28 +00:00

9 lines
280 B
PHP

<?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);