PHP Classes

File: helphp

Recommend this page to a friend!
  Classes of Gavin Gordon Markowski   Helphp PHP Class Generator   helphp   Download  
File: helphp
Role: Example script
Content type: text/plain
Description: Example script
Class: Helphp PHP Class Generator
Generate classes from configuration parameters
Author: By
Last change:
Date: 1 year ago
Size: 754 bytes
 

Contents

Class file image Download
#!/usr/bin/env php
<?php
/*|-----------------------------------------------------------------|*/
/* require(__DIR__.'/vendor/autoload.php'); */
require( __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'gavinggordon' . DIRECTORY_SEPARATOR . 'helphp' . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'bootstrap.php' );
/*|-----------------------------------------------------------------|*/
/* $application = new \Symfony\Component\Console\Application(); */
/*|-----------------------------------------------------------------|*/
/* $application->addCommands(new Helphp\Create\ClassCommand()); */
$application = $container['application'];
/*|-----------------------------------------------------------------|*/
$application->run();
?>