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 2b3455b commit 880a39bCopy full SHA for 880a39b
src/OutputFormat.php
@@ -283,23 +283,6 @@ public function set($aNames, $mValue)
283
return false;
284
}
285
286
- /**
287
- * @param non-empty-string $sMethodName
288
- * @param array<array-key, mixed> $aArguments
289
- *
290
- * @return mixed
291
292
- * @throws \Exception
293
- */
294
- public function __call(string $sMethodName, array $aArguments)
295
- {
296
- if (\method_exists(OutputFormatter::class, $sMethodName)) {
297
- return \call_user_func_array([$this->getFormatter(), $sMethodName], $aArguments);
298
- } else {
299
- throw new \Exception('Unknown OutputFormat method called: ' . $sMethodName);
300
- }
301
302
-
303
/**
304
* @internal
305
*/
0 commit comments