output->write($messages, $newline, $verbosity->value); } #[Override] public function writeln(iterable|string $messages, Verbosity $verbosity = Verbosity::Normal): void { $this->output->writeln($messages, $verbosity->value); } #[Override] public function isQuiet(): bool { return $this->output->isQuiet(); } #[Override] public function isVerbose(): bool { return $this->output->isVerbose(); } #[Override] public function isVeryVerbose(): bool { return $this->output->isVeryVerbose(); } #[Override] public function isDebug(): bool { return $this->output->isDebug(); } #[Override] public function writeArrayInOutputFormat(iterable $items, string $prefix = ' - '): void { $this->commandAdapter->writeArrayInOutputFormat($this->input, $this->output, $items, $prefix); } #[Override] public function writeTableInOutputFormat(array $items): void { $this->commandAdapter->writeTableInOutputFormat($this->input, $this->output, $items); } #[Override] public function writeStreamingTableInOutputFormat(\Iterator $items, int $tableGroupSize): void { $this->commandAdapter->writeStreamingTableInOutputFormat($this->input, $this->output, $items, $tableGroupSize); } #[Override] public function setVerbosity(Verbosity $level): void { $this->output->setVerbosity($level->value); } #[Override] public function getVerbosity(): Verbosity { return Verbosity::from($this->output->getVerbosity()); } #[Override] public function progressStart(int $max = 0): void { $this->symfonyStyle->progressStart($max); } #[Override] public function progressAdvance(int $step = 1): void { $this->symfonyStyle->progressAdvance($step); } #[Override] public function progressFinish(): void { $this->symfonyStyle->progressFinish(); } #[Override] public function progressIterate(iterable $iterable, ?int $max = null): iterable { return $this->symfonyStyle->progressIterate($iterable, $max); } }