server/src/bootstrap/app.php
changeset 2 00e2916104fe
parent 1 01a844d292ac
--- a/server/src/bootstrap/app.php	Mon Jun 15 19:30:32 2015 +0200
+++ b/server/src/bootstrap/app.php	Tue Jun 23 17:01:39 2015 +0200
@@ -28,17 +28,17 @@
 
 $app->singleton(
 	'Illuminate\Contracts\Http\Kernel',
-	'App\Http\Kernel'
+	'CorpusParole\Http\Kernel'
 );
 
 $app->singleton(
 	'Illuminate\Contracts\Console\Kernel',
-	'App\Console\Kernel'
+	'CorpusParole\Console\Kernel'
 );
 
 $app->singleton(
 	'Illuminate\Contracts\Debug\ExceptionHandler',
-	'App\Exceptions\Handler'
+	'CorpusParole\Exceptions\Handler'
 );
 
 /*