From 5da09fad67828a4148be70e66d69ea8f1e96a605 Mon Sep 17 00:00:00 2001 From: Lito Date: Mon, 9 Dec 2024 16:03:20 +0100 Subject: [PATCH] Fixed PHP 8.4 deprecation warning (#1622) * Fixed PHP 8.4 deprecation warning * Fix PHP 8.4 deprecation warning --- src/Console/ModelsCommand.php | 3 ++- src/Generator.php | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Console/ModelsCommand.php b/src/Console/ModelsCommand.php index 7b212941e..e5173ffa6 100644 --- a/src/Console/ModelsCommand.php +++ b/src/Console/ModelsCommand.php @@ -1301,10 +1301,11 @@ protected function getCommentFromDocBlock(\ReflectionMethod $reflection) * Get method return type based on it DocBlock comment * * @param \ReflectionMethod $reflection + * @param ?\Reflector $reflectorForContext * * @return null|string */ - protected function getReturnTypeFromDocBlock(\ReflectionMethod $reflection, \Reflector $reflectorForContext = null) + protected function getReturnTypeFromDocBlock(\ReflectionMethod $reflection, ?\Reflector $reflectorForContext = null) { $phpDocContext = (new ContextFactory())->createFromReflector($reflectorForContext ?? $reflection); $context = new Context( diff --git a/src/Generator.php b/src/Generator.php index a509958d2..1fcdbba26 100644 --- a/src/Generator.php +++ b/src/Generator.php @@ -42,7 +42,7 @@ class Generator /** * @param \Illuminate\Config\Repository $config * @param \Illuminate\View\Factory $view - * @param OutputInterface $output + * @param ?OutputInterface $output * @param string $helpers */ public function __construct( @@ -50,7 +50,7 @@ public function __construct( $config, /* Illuminate\View\Factory */ $view, - OutputInterface $output = null, + ?OutputInterface $output = null, $helpers = '' ) { $this->config = $config;