From 3c2a0b87103472101be5cb2265c81afa2d9706a0 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Wed, 28 Apr 2021 14:56:25 +0200 Subject: [PATCH] Missing abort method added (#37150) The App-Facade is missing the `abort` function. See: https://github.com/laravel/framework/blob/8.x/src/Illuminate/Foundation/Application.php#L1110 --- src/Illuminate/Support/Facades/App.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Illuminate/Support/Facades/App.php b/src/Illuminate/Support/Facades/App.php index b186d3284e9f..d0004db86771 100755 --- a/src/Illuminate/Support/Facades/App.php +++ b/src/Illuminate/Support/Facades/App.php @@ -34,6 +34,7 @@ * @method static string storagePath(string $path = '') * @method static string version() * @method static string|bool environment(string|array ...$environments) + * @method static void abort(int $code, string $message = '', array $headers = []) * @method static void boot() * @method static void booted(callable $callback) * @method static void booting(callable $callback)