mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Lots of cleaning up.
This commit is contained in:
@@ -18,16 +18,7 @@
|
||||
|
|
||||
*/
|
||||
|
||||
/**
|
||||
* 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';
|
||||
}
|
||||
|
||||
require __DIR__.'/../bootstrap/autoload.php';
|
||||
|
||||
require __DIR__ . '/../bootstrap/autoload.php';
|
||||
|
||||
|
||||
/*
|
||||
@@ -42,7 +33,7 @@ require __DIR__.'/../bootstrap/autoload.php';
|
||||
|
|
||||
*/
|
||||
|
||||
$app = require_once __DIR__.'/../bootstrap/app.php';
|
||||
$app = require_once __DIR__ . '/../bootstrap/app.php';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -59,11 +50,10 @@ $app = require_once __DIR__.'/../bootstrap/app.php';
|
||||
$kernel = $app->make('Illuminate\Contracts\Http\Kernel');
|
||||
|
||||
$response = $kernel->handle(
|
||||
$request = Illuminate\Http\Request::capture()
|
||||
$request = Illuminate\Http\Request::capture()
|
||||
);
|
||||
|
||||
$response->send();
|
||||
|
||||
|
||||
|
||||
$kernel->terminate($request, $response);
|
||||
|
Reference in New Issue
Block a user