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.
2 parents b0b04f3 + d0e71de commit 70bcaccCopy full SHA for 70bcacc
src/DataProvider.php
@@ -39,7 +39,6 @@ public function toArray(): array
39
->filter(fn (ReflectionMethod $method) => ! $method->isStatic() && ! in_array($method->name, $this->excludedMethods))
40
->mapWithKeys(function (ReflectionMethod $method) {
41
$returnType = $method->getReturnType();
42
- // @phpstan-ignore-next-line
43
if ($returnType instanceof ReflectionNamedType && $returnType->getName() === LazyProp::class) {
44
return [$method->name => $method->invoke($this)];
45
}
0 commit comments