From 9763effe2fb059381c1ea976dc0ad26591dc725b Mon Sep 17 00:00:00 2001 From: Jeffrey Angenent <1571879+devfrey@users.noreply.github.com> Date: Tue, 30 Jul 2024 08:57:25 +0200 Subject: [PATCH] Widen typehints in base service provider (#52308) --- src/Illuminate/Support/ServiceProvider.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Illuminate/Support/ServiceProvider.php b/src/Illuminate/Support/ServiceProvider.php index f059a046bcf8..607431363e2a 100755 --- a/src/Illuminate/Support/ServiceProvider.php +++ b/src/Illuminate/Support/ServiceProvider.php @@ -11,8 +11,8 @@ use Illuminate\View\Compilers\BladeCompiler; /** - * @property array $bindings All of the container bindings that should be registered. - * @property array $singletons All of the singletons that should be registered. + * @property array $bindings All of the container bindings that should be registered. + * @property array $singletons All of the singletons that should be registered. */ abstract class ServiceProvider {