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))));
114
+
thrownew \InvalidArgumentException(\sprintf('Unsupported verbosity group "%s", expected one of "%s".', $group, implode('", "', array_keys($this->verboseOutput))));
115
115
}
116
116
$this->verboseOutput[$group] = $status;
117
117
}
118
118
119
119
if ($ignoreFile) {
120
120
if (!is_file($ignoreFile)) {
121
-
thrownew \InvalidArgumentException(sprintf('The ignoreFile "%s" does not exist.', $ignoreFile));
121
+
thrownew \InvalidArgumentException(\sprintf('The ignoreFile "%s" does not exist.', $ignoreFile));
122
122
}
123
123
set_error_handler(staticfunction ($t, $m) use ($ignoreFile, &$line) {
124
-
thrownew \RuntimeException(sprintf('Invalid pattern found in "%s" on line "%d"', $ignoreFile, 1 + $line).substr($m, 12));
124
+
thrownew \RuntimeException(\sprintf('Invalid pattern found in "%s" on line "%d"', $ignoreFile, 1 + $line).substr($m, 12));
0 commit comments