From 5272601fdf2093d961bf1fb40ffda0b91eaef13a Mon Sep 17 00:00:00 2001 From: Levin Herr Date: Mon, 19 Oct 2020 15:39:50 +0200 Subject: [PATCH] Since someone removed the artisan-file, all tests are failing. (Wasn't me. I just commited.) --- .gitignore | 1 - artisan | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 artisan diff --git a/.gitignore b/.gitignore index 842a3538e..b32ba8b8f 100644 --- a/.gitignore +++ b/.gitignore @@ -111,7 +111,6 @@ fabric.properties # End of https://www.gitignore.io/api/phpstorm -artisan public/js/admin.js public/js/app.js public/css/admin.css diff --git a/artisan b/artisan new file mode 100644 index 000000000..5c23e2e24 --- /dev/null +++ b/artisan @@ -0,0 +1,53 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +/* +|-------------------------------------------------------------------------- +| Shutdown The Application +|-------------------------------------------------------------------------- +| +| Once Artisan has finished running, we will fire off the shutdown events +| so that any final work may be done by the application before we shut +| down the process. This is the last thing to happen to the request. +| +*/ + +$kernel->terminate($input, $status); + +exit($status);