From 49c774a7c17f726b21c7b9df2fb443f256201551 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 24 Apr 2024 18:12:25 +0100 Subject: [PATCH] Fixes static types --- src/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.php b/src/Application.php index be71aaeb..dc78a768 100644 --- a/src/Application.php +++ b/src/Application.php @@ -35,7 +35,7 @@ public static function configure(?string $basePath = null): ApplicationBuilder default => static::inferBasePath(), }; - $builder = (new ApplicationBuilder(new static($basePath))); + $builder = (new ApplicationBuilder(new static($basePath))); // @phpstan-ignore-line $builder->create()->singleton( \Illuminate\Contracts\Console\Kernel::class,