All kinds of cleanup.

This commit is contained in:
James Cole
2014-12-06 21:48:23 +01:00
parent 07610ae8fb
commit 31a0be5bb4
26 changed files with 138 additions and 111 deletions

View File

@@ -6,6 +6,15 @@
* @author Taylor Otwell <taylorotwell@gmail.com>
*/
/**
* Adding c3.php for code coverage during codeception tests
* ref: https://github.com/Codeception/c3
*/
if (file_exists(__DIR__ . '/../c3.php')) {
require __DIR__ . '/../c3.php';
}
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
@@ -18,8 +27,7 @@
|
*/
require __DIR__.'/../bootstrap/autoload.php';
require __DIR__ . '/../bootstrap/autoload.php';
/*
@@ -34,7 +42,7 @@ require __DIR__.'/../bootstrap/autoload.php';
|
*/
$app = require_once __DIR__.'/../bootstrap/start.php';
$app = require_once __DIR__ . '/../bootstrap/start.php';
/*
|--------------------------------------------------------------------------