We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a0b617 commit a30f507Copy full SHA for a30f507
src/Symfony/Component/Console/Style/OutputStyle.php
@@ -113,4 +113,36 @@ public function getFormatter()
113
{
114
return $this->output->getFormatter();
115
}
116
+
117
+ /**
118
+ * {@inheritdoc}
119
+ */
120
+ public function isQuiet()
121
+ {
122
+ return $this->output->isQuiet();
123
+ }
124
125
126
127
128
+ public function isVerbose()
129
130
+ return $this->output->isVerbose();
131
132
133
134
135
136
+ public function isVeryVerbose()
137
138
+ return $this->output->isVeryVerbose();
139
140
141
142
143
144
+ public function isDebug()
145
146
+ return $this->output->isDebug();
147
148
0 commit comments