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 6bbaf9c commit ec1d1b4Copy full SHA for ec1d1b4
src/OutputFormat.php
@@ -233,23 +233,6 @@ public function set($aNames, $mValue)
233
return false;
234
}
235
236
- /**
237
- * @param non-empty-string $sMethodName
238
- * @param array<array-key, mixed> $aArguments
239
- *
240
- * @return mixed
241
242
- * @throws \Exception
243
- */
244
- public function __call(string $sMethodName, array $aArguments)
245
- {
246
- if (\method_exists(OutputFormatter::class, $sMethodName)) {
247
- return \call_user_func_array([$this->getFormatter(), $sMethodName], $aArguments);
248
- } else {
249
- throw new \Exception('Unknown OutputFormat method called: ' . $sMethodName);
250
- }
251
252
-
253
/**
254
* @internal
255
*/
0 commit comments