public function isSilent() : bool { // @deprecated since Symfony 7.2, change to $this->output->isSilent() in 8.0 return method_exists($this->output, 'isSilent') ? $this->output ->isSilent() : self::VERBOSITY_SILENT === $this->output ->getVerbosity(); }