File tree 1 file changed +28
-0
lines changed
src/Symfony/Component/Console/Output
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,34 @@ public function setVerbosity($level);
75
75
*/
76
76
public function getVerbosity ();
77
77
78
+ /**
79
+ * Returns whether verbosity is quiet (-q)
80
+ *
81
+ * @return bool true if verbosity is set to VERBOSITY_QUIET, false otherwise
82
+ */
83
+ public function isQuiet ();
84
+
85
+ /**
86
+ * Returns whether verbosity is verbose (-v)
87
+ *
88
+ * @return bool true if verbosity is set to VERBOSITY_VERBOSE, false otherwise
89
+ */
90
+ public function isVerbose ();
91
+
92
+ /**
93
+ * Returns whether verbosity is very verbose (-vv)
94
+ *
95
+ * @return bool true if verbosity is set to VERBOSITY_VERY_VERBOSE, false otherwise
96
+ */
97
+ public function isVeryVerbose ();
98
+
99
+ /**
100
+ * Returns whether verbosity is debug (-vvv)
101
+ *
102
+ * @return bool true if verbosity is set to VERBOSITY_DEBUG, false otherwise
103
+ */
104
+ public function isDebug ();
105
+
78
106
/**
79
107
* Sets the decorated flag.
80
108
*
You can’t perform that action at this time.
0 commit comments