You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownew \InvalidArgumentException(sprintf('Unsupported verbosity group "%s", expected one of "%s"', $group, implode('", "', array_keys($this->verboseOutput))));
81
+
}
82
+
$this->verboseOutput[$group] = (bool) $status;
83
+
}
76
84
}
77
85
78
86
/**
@@ -132,9 +140,9 @@ public function isInRegexMode()
132
140
/**
133
141
* @return bool
134
142
*/
135
-
publicfunctionverboseOutput()
143
+
publicfunctionverboseOutput($group)
136
144
{
137
-
return$this->verboseOutput;
145
+
return$this->verboseOutput[$group];
138
146
}
139
147
140
148
/**
@@ -156,9 +164,16 @@ public static function fromUrlEncodedString($serializedConfiguration)
0 commit comments