diff --git a/src/Console/ModelsCommand.php b/src/Console/ModelsCommand.php index 7b21294..e5173ff 100644 --- a/src/Console/ModelsCommand.php +++ b/src/Console/ModelsCommand.php @@ -1301,10 +1301,11 @@ class ModelsCommand extends Command * 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 a509958..1fcdbba 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 @@ class Generator $config, /* Illuminate\View\Factory */ $view, - OutputInterface $output = null, + ?OutputInterface $output = null, $helpers = '' ) { $this->config = $config;