New and old code.

This commit is contained in:
James Cole
2015-02-06 04:52:16 +01:00
parent ed475b1b9c
commit c502dd445b
48 changed files with 240 additions and 44 deletions

View File

@@ -28,17 +28,17 @@ $app = new Illuminate\Foundation\Application(
$app->singleton(
'Illuminate\Contracts\Http\Kernel',
'App\Http\Kernel'
'FireflyIII\Http\Kernel'
);
$app->singleton(
'Illuminate\Contracts\Console\Kernel',
'App\Console\Kernel'
'FireflyIII\Console\Kernel'
);
$app->singleton(
'Illuminate\Contracts\Debug\ExceptionHandler',
'App\Exceptions\Handler'
'FireflyIII\Exceptions\Handler'
);
/*