PHP Classes

File: helphp.php

Recommend this page to a friend!
  Classes of Gavin Gordon Markowski   Helphp PHP Class Generator   helphp.php   Download  
File: helphp.php
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: 2 years ago
Size: 618 bytes
 

Contents

Class file image Download

<?php
/*|-----------------------------------------------------------------|*/
require(__DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php');
/*|-----------------------------------------------------------------|*/
use Symfony\Component\Console\Application;
/*|-----------------------------------------------------------------|*/
$application = new Application();
/*|-----------------------------------------------------------------|*/
$application->add( new Helphp\Commands\Create\ClassCommand() );
/*|-----------------------------------------------------------------|*/
$application->run();