Removed unused use statements.

This commit is contained in:
James Cole
2015-03-29 07:51:56 +02:00
parent d586b82372
commit 12d3800d67
20 changed files with 30 additions and 44 deletions

View File

@@ -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'
);
/*