PHP code example of bumble-tech / bumble-doc-gen
1. Go to this page and download the library: Download bumble-tech/bumble-doc-gen library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bumble-tech / bumble-doc-gen example snippets
use BumbleDocGen\DocGeneratorFactory;
// Initialize the factory
$factory = new DocGeneratorFactory();
// Create a DocGenerator instance
$docgen = $factory->create('/path/to/configuration/files');
// or $docgen = $factory->createByConfigArray([...]);
// Now call the desired operation
$docgen->generate();