PHP Classes

File: githubwiki.php

Recommend this page to a friend!
  Classes of Stefan Kientzler   PHPDoc 2 Github Wiki   githubwiki.php   Download  
File: githubwiki.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHPDoc 2 Github Wiki
Generate documentation for packages in GitHub
Author: By
Last change:
Date: 2 years ago
Size: 315 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);

require_once
__DIR__ . DIRECTORY_SEPARATOR . 'autoloader.php';

use
SKien\GitHubWiki\GitHubWikiCreator;
use
lordgnu\CLICommander\CLICommander;

$oCli = new CLICommander();

// print_r($oCli->GetArguments());

$oCreator = new GitHubWikiCreator($oCli);

exit(
$oCreator->run() ? 0 : 1);