Skip to content

Commit 7b45a0f

Browse files
authored
Fix implicit null warning in php 8.4 (#51)
1 parent b0cc64f commit 7b45a0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/InspectCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class InspectCommand extends Command
2828
private ConfigFactory $configFactory;
2929
private string $schemaPath;
3030

31-
public function __construct(string $name = null)
31+
public function __construct(?string $name = null)
3232
{
3333
parent::__construct($name);
3434
$this->configFactory = new ConfigFactory();

0 commit comments

Comments
 (0)