Skip to content

Commit

Permalink
[FEATURE] Automatically generate rst or md documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
linawolf committed Dec 16, 2024
1 parent 1f4d743 commit ae4ff0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions packages/typo3-docs-theme/src/TextRoles/ComposerTextRole.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ final class ComposerTextRole implements TextRole
public function __construct(
private readonly PackagistService $packagistService,
private readonly LoggerInterface $logger,
)
{
}
) {}

public function getName(): string
{
Expand Down
1 change: 1 addition & 0 deletions packages/typo3-guides-cli/src/Command/InitCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
if ($input->getOption('working-dir')) {
$workdir = $input->getOption('working-dir');
assert(is_string($workdir));
$workdir = (string) $workdir;

if (chdir($workdir)) {
$output->writeln('<info>Changed working directory to ' . getcwd() . '</info>');
Expand Down

0 comments on commit ae4ff0c

Please sign in to comment.