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 a4fde5d commit f629f36Copy full SHA for f629f36
generator/src/Scanner.php
@@ -78,7 +78,7 @@ public function getMethods(): array
78
$overloadedFunctions = array_merge($overloadedFunctions, \array_map(function ($functionObject) {
79
return $functionObject->methodname->__toString();
80
}, $functionObjects));
81
- $overloadedFunctions = \array_filter($overloadedFunctions, function(string $functionName) use ($ignoredFunctions) {
+ $overloadedFunctions = \array_filter($overloadedFunctions, function (string $functionName) use ($ignoredFunctions) {
82
return !isset($ignoredFunctions[$functionName]);
83
});
84
continue;
0 commit comments