PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   GetMeALatte   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: GetMeALatte
Promote a product to be sold to a crowd
Author: By
Last change:
Date: 1 year ago
Size: 272 bytes
 

Contents

Class file image Download
<?php
/**
 * @author Pierre-Henry Soria <hi@ph7.me>
 * @license MIT License; <https://opensource.org/licenses/MIT>
 */

require __DIR__ . '/vendor/autoload.php';

use
GetMeALatteLike\Kernel\Bootstrap;

ob_start();
$app = new Bootstrap();
$app->run();
ob_end_flush();