File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 1
1
parameters :
2
- level : 4
3
- # reportUnmatchedIgnoredErrors: false
4
- # treatPhpDocTypesAsCertain: false
2
+ level : 8
5
3
paths :
6
- - src/
7
- - tests/
4
+ - src/
5
+ ignoreErrors :
6
+ -
7
+ identifier : missingType.generics
8
+ -
9
+ identifier : missingType.iterableValue
Original file line number Diff line number Diff line change @@ -69,9 +69,9 @@ class ResultSet implements ResultSetInterface
69
69
/**
70
70
* Current chunk content.
71
71
*
72
- * @var iterable
72
+ * @var array<int, mixed>
73
73
*/
74
- protected iterable $ chunk ;
74
+ protected array $ chunk ;
75
75
76
76
/**
77
77
* Current element index.
@@ -267,7 +267,7 @@ public function __serialize(): never
267
267
*
268
268
* Serialization is not supported (yet). *
269
269
*/
270
- public function unserialize ($ serialized ): never
270
+ public function unserialize (string $ serialized ): never
271
271
{
272
272
throw new RuntimeException ('You cannot unserialize this result set. ' );
273
273
}
You can’t perform that action at this time.
0 commit comments