From 4fc244b37d26c6957df35430cd10238dc1a54370 Mon Sep 17 00:00:00 2001 From: Ruben Kluft Date: Wed, 10 Sep 2025 17:14:20 +0200 Subject: [PATCH] Fix implicit null warning in php 8.4 --- src/Command/InspectCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/InspectCommand.php b/src/Command/InspectCommand.php index 1e6636f..b8a000d 100644 --- a/src/Command/InspectCommand.php +++ b/src/Command/InspectCommand.php @@ -28,7 +28,7 @@ class InspectCommand extends Command private ConfigFactory $configFactory; private string $schemaPath; - public function __construct(string $name = null) + public function __construct(?string $name = null) { parent::__construct($name); $this->configFactory = new ConfigFactory();