]> BookStack Code Mirror - bookstack/blobdiff - bootstrap/app.php
Opensearch: Fixed XML declaration when php short tags enabled
[bookstack] / bootstrap / app.php
index 6c6b0bf36e62e0dc1aa7408973b16138064bbdf7..12cc2dce2b36bed74d5971207c86a41fb1a78e41 100644 (file)
@@ -11,8 +11,8 @@
 |
 */
 
-$app = new Illuminate\Foundation\Application(
-    realpath(__DIR__.'/../')
+$app = new \BookStack\App\Application(
+    dirname(__DIR__)
 );
 
 /*
@@ -28,17 +28,17 @@ $app = new Illuminate\Foundation\Application(
 
 $app->singleton(
     Illuminate\Contracts\Http\Kernel::class,
-    Oxbow\Http\Kernel::class
+    BookStack\Http\Kernel::class
 );
 
 $app->singleton(
     Illuminate\Contracts\Console\Kernel::class,
-    Oxbow\Console\Kernel::class
+    BookStack\Console\Kernel::class
 );
 
 $app->singleton(
     Illuminate\Contracts\Debug\ExceptionHandler::class,
-    Oxbow\Exceptions\Handler::class
+    BookStack\Exceptions\Handler::class
 );
 
 /*