From 0bc893dd356fe8955777f699739a6db3f4a31cee Mon Sep 17 00:00:00 2001 From: tracer Date: Sun, 8 Feb 2026 19:10:56 +0100 Subject: [PATCH] Restore artisan script --- artisan | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/artisan b/artisan index a76bbd7..ad7ab90 100644 --- a/artisan +++ b/artisan @@ -1,2 +1,19 @@ #!/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 +); + +$kernel->terminate($input, $status); + +exit($status);