QA_Peardoc_Coverage
[ class tree: QA_Peardoc_Coverage ] [ index: QA_Peardoc_Coverage ] [ all elements ]

Source for file genData.php

Documentation is available at genData.php

  1. <?php
  2. require_once 'QA/Peardoc/Coverage.php';
  3.  
  4. if ($argc < 3{
  5.     echo <<<EOD
  6. Generates PEAR documentation coverage data.
  7. Usage:
  8.     php genData.php path/to/peardoc/manual.xml path/to/pearcvs/
  9.  
  10. EOD;
  11.     exit(1);
  12. }
  13.  
  14. //$strManualPath = dirname(__FILE__) . '/../peardoc/manual.xml';
  15. //$strPearDir    = dirname(__FILE__) . '/../pear/';
  16. $strManualPath  $argv[1];
  17. $strPearDir     $argv[2];
  18.  
  19. $pdc = new QA_Peardoc_Coverage($strManualPath$strPearDir);
  20.     'doc.dat',
  21.     serialize(
  22.         $pdc->generateCoverage()
  23.     )
  24. );
  25. ?>

Documentation generated on Mon, 11 Mar 2019 15:10:40 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.