From 768e8f4ff27842401d8faa8cac8fd0e5db413ac4 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 16 Apr 2026 09:01:33 +0200 Subject: --- phork0.php | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'phork0.php') diff --git a/phork0.php b/phork0.php index 1ddc6f6..99b0823 100644 --- a/phork0.php +++ b/phork0.php @@ -13,14 +13,11 @@ class MyCommand extends Command protected function execute(InputInterface $input, OutputInterface $output): int { $ioV = new SymfonyStyle($input, $output->isVerbose() ? $output : new NullOutput()); - $this->ioVV = new SymfonyStyle( - $input, - $output->isVeryVerbose() ? $output : new NullOutput() - ); - $this->ioVVV = new SymfonyStyle($input, $output->isDebug() ? $output : new NullOutput()); + $ioVV = new SymfonyStyle($input, $output->isVeryVerbose() ? $output : new NullOutput()); + $ioVVV = new SymfonyStyle($input, $output->isDebug() ? $output : new NullOutput()); - $this->ioV->writeln('message visible with -v only'); - $this->ioVV->writeln('message visible with -vv only'); - $this->ioVVV->writeln('message visible with -vvv only'); + $ioV->writeln('message visible with -v only'); + $ioVV->writeln('message visible with -vv only'); + $ioVVV->writeln('message visible with -vvv only'); } } \ No newline at end of file -- cgit v1.2.3