From 39aa8530424310663c888f9e02224158961532e3 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 30 Oct 2018 18:41:29 +0100 Subject: PHP is crap --- bootstrap/app.php | 55 ---------------------------------------------- bootstrap/autoload.php | 34 ---------------------------- bootstrap/cache/.gitignore | 2 -- 3 files changed, 91 deletions(-) delete mode 100644 bootstrap/app.php delete mode 100644 bootstrap/autoload.php delete mode 100644 bootstrap/cache/.gitignore (limited to 'bootstrap') diff --git a/bootstrap/app.php b/bootstrap/app.php deleted file mode 100644 index 8966433..0000000 --- a/bootstrap/app.php +++ /dev/null @@ -1,55 +0,0 @@ -singleton( - Illuminate\Contracts\Http\Kernel::class, - Infrastructure\Http\Kernel::class -); - -$app->singleton( - Illuminate\Contracts\Console\Kernel::class, - Infrastructure\Console\Kernel::class -); - -$app->singleton( - Illuminate\Contracts\Debug\ExceptionHandler::class, - Infrastructure\Exceptions\Handler::class -); - -/* -|-------------------------------------------------------------------------- -| Return The Application -|-------------------------------------------------------------------------- -| -| This script returns the application instance. The instance is given to -| the calling script so we can separate the building of the instances -| from the actual running of the application and sending responses. -| -*/ - -return $app; diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php deleted file mode 100644 index 3830137..0000000 --- a/bootstrap/autoload.php +++ /dev/null @@ -1,34 +0,0 @@ -