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