From cbfa2985017e0e3e96854f57b8fbe4e6f27d2cdb Mon Sep 17 00:00:00 2001 From: viktor-kup <83069290+viktor-kup@users.noreply.github.com> Date: Wed, 21 Aug 2024 18:49:52 +0200 Subject: [PATCH] Add missing semicolon to code example (#12067) --- doc/articles/scripts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/articles/scripts.md b/doc/articles/scripts.md index 1f31eaeb4..26b8113ab 100644 --- a/doc/articles/scripts.md +++ b/doc/articles/scripts.md @@ -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;