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 d00b49a commit d00b870Copy full SHA for d00b870
stubs/schema.stub
@@ -24,9 +24,9 @@ class {{ class }} extends {{ schema }}
24
/**
25
* Get the resource fields.
26
*
27
- * @return iterable
+ * @return array<mixed>
28
*/
29
- public function fields(): iterable
+ public function fields(): array
30
{
31
return [
32
ID::make(),
@@ -38,9 +38,9 @@ class {{ class }} extends {{ schema }}
38
39
* Get the resource filters.
40
41
- * @return iterable<Filter>
+ * @return Filter[]
42
43
- public function filters(): iterable
+ public function filters(): array
44
45
46
WhereIdIn::make($this),
0 commit comments