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