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 f3cd266 commit 015b76bCopy full SHA for 015b76b
src/DataProvider.php
@@ -38,7 +38,6 @@ public function toArray(): array
38
->map(fn ($value) => $value instanceof Arrayable ? $value->toArray() : $value);
39
40
$convertedMethods = collect($reflectionClass->getMethods(ReflectionMethod::IS_PUBLIC))
41
- ->filter(fn (ReflectionMethod $method) => ! $method->isStatic())
42
->filter(fn (ReflectionMethod $method) => ! $method->isStatic() && ! in_array($method->name, $this->excludedMethods))
43
->mapWithKeys(function (ReflectionMethod $method) {
44
$returnType = $method->getReturnType();
0 commit comments