Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Command/InspectCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class InspectCommand extends Command
private ConfigFactory $configFactory;
private string $schemaPath;

public function __construct(string $name = null)
public function __construct()
{
parent::__construct($name);
parent::__construct();
$this->configFactory = new ConfigFactory();
$this->schemaPath = dirname(__DIR__, 2) . '/resources/phpfci.xsd';
}
Expand Down