Skip to content

Commit

Permalink
Merge pull request #893 from nextcloud/bugfix/noid/ensure-writeln-is-…
Browse files Browse the repository at this point in the history
…string

fix(command): Ensure that writeln() argument is string
  • Loading branch information
blizzz authored Oct 4, 2024
2 parents 3311a11 + fee8caa commit 89e237b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Command/ConfigCreate.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected function configure(): void {
}

protected function execute(InputInterface $input, OutputInterface $output): int {
$output->writeln($this->samlSettings->getNewProviderId());
$output->writeln((string)$this->samlSettings->getNewProviderId());
return 0;
}
}

0 comments on commit 89e237b

Please sign in to comment.