phpci/index.php

11 lines
185 B
PHP
Raw Normal View History

2013-05-03 17:02:53 +02:00
<?php
error_reporting(E_ALL & ~E_NOTICE);
ini_set('display_errors', 'on');
2013-05-10 17:25:51 +02:00
session_start();
2013-05-03 17:02:53 +02:00
require_once('bootstrap.php');
$fc = new PHPCI\Application();
print $fc->handleRequest();