Moved C3 handler.

This commit is contained in:
James Cole 2015-02-07 11:01:47 +01:00
parent b02046b884
commit b0f43eaa07

View File

@ -18,8 +18,6 @@
| |
*/ */
require __DIR__.'/../bootstrap/autoload.php';
/** /**
* Adding c3.php for code coverage during codeception tests * Adding c3.php for code coverage during codeception tests
* ref: https://github.com/Codeception/c3 * ref: https://github.com/Codeception/c3
@ -28,6 +26,10 @@ if (file_exists(__DIR__ . '/../c3.php')) {
require __DIR__ . '/../c3.php'; require __DIR__ . '/../c3.php';
} }
require __DIR__.'/../bootstrap/autoload.php';
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Turn On The Lights | Turn On The Lights
@ -62,4 +64,6 @@ $response = $kernel->handle(
$response->send(); $response->send();
$kernel->terminate($request, $response); $kernel->terminate($request, $response);