Skip to content

Commit f8ffc00

Browse files
committed
Fixes deprecation notices
1 parent b0cc64f commit f8ffc00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Command/InspectCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ class InspectCommand extends Command
2828
private ConfigFactory $configFactory;
2929
private string $schemaPath;
3030

31-
public function __construct(string $name = null)
31+
public function __construct()
3232
{
33-
parent::__construct($name);
33+
parent::__construct();
3434
$this->configFactory = new ConfigFactory();
3535
$this->schemaPath = dirname(__DIR__, 2) . '/resources/phpfci.xsd';
3636
}

0 commit comments

Comments
 (0)