We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8291b9 commit 7868ddbCopy full SHA for 7868ddb
src/Support/TypeToSchemaExtensions/ArrayableToSchema.php
@@ -33,7 +33,7 @@ public function shouldHandle(Type $type): bool
33
return $type instanceof ObjectType
34
&& $type->isInstanceOf(Arrayable::class)
35
&& ! $type->isInstanceOf(Collection::class) // handled in its own extension
36
- && ((new \ReflectionClass($type->name))->isInstantiable());
+ && ((new \ReflectionClass($type->name))->isInstantiable()); // @phpstan-ignore argument.type
37
}
38
39
/**
0 commit comments