mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-17 17:57:09 +00:00
Removed unused use statements.
This commit is contained in:
@@ -11,10 +11,8 @@
|
||||
|
|
||||
*/
|
||||
|
||||
use FireflyIII\Validation\FireflyValidator;
|
||||
|
||||
$app = new Illuminate\Foundation\Application(
|
||||
realpath(__DIR__.'/../')
|
||||
realpath(__DIR__ . '/../')
|
||||
);
|
||||
|
||||
/*
|
||||
@@ -29,18 +27,18 @@ $app = new Illuminate\Foundation\Application(
|
||||
*/
|
||||
|
||||
$app->singleton(
|
||||
'Illuminate\Contracts\Http\Kernel',
|
||||
'FireflyIII\Http\Kernel'
|
||||
'Illuminate\Contracts\Http\Kernel',
|
||||
'FireflyIII\Http\Kernel'
|
||||
);
|
||||
|
||||
$app->singleton(
|
||||
'Illuminate\Contracts\Console\Kernel',
|
||||
'FireflyIII\Console\Kernel'
|
||||
'Illuminate\Contracts\Console\Kernel',
|
||||
'FireflyIII\Console\Kernel'
|
||||
);
|
||||
|
||||
$app->singleton(
|
||||
'Illuminate\Contracts\Debug\ExceptionHandler',
|
||||
'FireflyIII\Exceptions\Handler'
|
||||
'Illuminate\Contracts\Debug\ExceptionHandler',
|
||||
'FireflyIII\Exceptions\Handler'
|
||||
);
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user