[Maintenance] Fix invalid install command argument

This commit is contained in:
Jan Goralski 2024-10-25 11:21:42 +02:00
parent 7369192e04
commit 0ad1b6cf56
No known key found for this signature in database
GPG key ID: 95D91BA380F31EDD
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ final class InstallerContext implements Context
private readonly FactoryInterface $adminUserFactory,
private readonly UserRepositoryInterface $adminUserRepository,
private readonly ValidatorInterface $validator,
private readonly bool $publicDir,
private readonly string $publicDir,
) {
}

View file

@ -33,7 +33,7 @@ final class InstallSampleDataCommand extends AbstractInstallCommand
public function __construct(
protected readonly EntityManagerInterface $entityManager,
protected readonly CommandDirectoryChecker $commandDirectoryChecker,
protected readonly bool $publicDir,
protected readonly string $publicDir,
) {
parent::__construct($this->entityManager, $this->commandDirectoryChecker);
}