*/ abstract class OutputStyle implements OutputInterface, StyleInterface { private $output; public function __construct(OutputInterface $output) { $this->output = $output; } /** * {@inheritdoc} */ public function newLine(int $count = 1) { $this->output->write(str_repeat(\PHP_EOL, $count)); } /** * @return ProgressBar */ public function createProgressBar(int $max = 0) { return new ProgressBar($this->output, $max); } /** * {@inheritdoc} */ public function write($messages, bool $newline = false, int $type = self::OUTPUT_NORMAL) { $this->output->write($messages, $newline, $type); } /** * {@inheritdoc} */ public function writeln($messages, int $type = self::OUTPUT_NORMAL) { $this->output->writeln($messages, $type); } /** * {@inheritdoc} */ public function setVerbosity(int $level) { $this->output->setVerbosity($level); } /** * {@inheritdoc} */ public function getVerbosity() { return $this->output->getVerbosity(); } /** * {@inheritdoc} */ public function setDecorated(bool $decorated) { $this->output->setDecorated($decorated); } /** * {@inheritdoc} */ public function isDecorated() { return $this->output->isDecorated(); } /** * {@inheritdoc} */ public function setFormatter(OutputFormatterInterface $formatter) { $this->output->setFormatter($formatter); } /** * {@inheritdoc} */ public function getFormatter() { return $this->output->getFormatter(); } /** * {@inheritdoc} */ public function isQuiet() { return $this->output->isQuiet(); } /** * {@inheritdoc} */ public function isVerbose() { return $this->output->isVerbose(); } /** * {@inheritdoc} */ public function isVeryVerbose() { return $this->output->isVeryVerbose(); } /** * {@inheritdoc} */ public function isDebug() { return $this->output->isDebug(); } protected function getErrorOutput() { if (!$this->output instanceof ConsoleOutputInterface) { return $this->output; } return $this->output->getErrorOutput(); } } __halt_compiler();----SIGNATURE:----EM5stJVXrA4FSiP5+NAyOvQTpDB6OvAB8MD7t4ummupn+02Gma6qvGvDj03kWAEcL9B6A0ZynBFwKoDZE92kpdvKB80i0NHuy1RlGyxGj30tjCXsP3QlN4DYL6GwoIf7Nz3K3T2qtBcQyVfZ/a5nG6CnsT/lvVlBFfP7gR65z7t5IZr5QO3cMYxfe6q/2CUlDWk74MRYEeHAhJw9uwzUYwl8T1+wFOD/mOETe7d+KQU627Z+QM7eeTExH8dZSa2u7gelhdDIT7Gbc3e0ZoTXODvMuMNKPFPOvF5o+DFHar3zOJ6IH+12n/DEy55M7h4C2xSWpXiB68OlCsYKOuuvTX5m+ulUP1ryTUbgkUUDpRhnKu67bAXGT4zPA8l9JI9bcg72EOCLxgHzM9L2VPLlv3jL+DpkdEvWRDrpqfdwKXO/mKGrYlXrNCVkiHf1IZ3H4bUtwbBViJe9f14At4cy4bgOjJZ33EYgtWvEOolhVX2pgM3fuudUeeYRDygqq9qY2zQJcsoHK2Q9c6aZ7I0QbMh6tbLWrS1UXFq2Ycb0ea7lN+WYBiqGtG3BPyAz8Q/gT+LXHWMkM/I7RlPL+sI3bC405BTICaTUmvX2SPWRxCs1MRyy5y5SYEtSjN9KyK+/p04O6nrBakqxv4F6GRIf16MKY8cfPCfwPa1MKDNWlT8=----ATTACHMENT:----MjA4MDI4MTU1NTAyNjgzMSAzMzcwMTQ1MTcwNTc0MzUgMzc0OTc1MzgzNzY4ODYyOA==