1
0
Fork 0

Add missing semicolon to code example (#12067)

pull/12091/head
viktor-kup 2024-08-21 18:49:52 +02:00 committed by GitHub
parent e173d20450
commit cbfa298501
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ class MyCommand extends Command
public function execute(InputInterface $input, OutputInterface $output): int
{
if ($input->getOption('arbitrary-flag')) {
$output->writeln('The flag was used')
$output->writeln('The flag was used');
}
return 0;