Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / console / Style / OutputStyle.php
index 8371bb533551e20407ee17876b37a13e7c4a92c0..de7be1e08b3f3d8bca62c62595f4deb7b2e8b57b 100644 (file)
@@ -113,4 +113,36 @@ abstract class OutputStyle implements OutputInterface, StyleInterface
     {
         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();
+    }
 }