File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,15 +84,15 @@ public function store(Collection $items): void
84
84
$ averageChunks = $ this ->preaggregateAverages (collect ($ averages )) // @phpstan-ignore argument.templateType, argument.templateType
85
85
->chunk ($ this ->config ->get ('pulse.storage.database.chunk ' ));
86
86
87
- $ valueChunks = $ this // @phpstan-ignore argument.templateType
87
+ $ valueChunks = $ this // @phpstan-ignore method.nonObject
88
88
->collapseValues ($ values )
89
89
->when (
90
90
$ this ->requiresManualKeyHash (),
91
91
fn ($ values ) => $ values ->map (fn ($ value ) => [
92
92
...($ attributes = $ value ->attributes ()),
93
93
'key_hash ' => md5 ($ attributes ['key ' ]),
94
94
]),
95
- fn ($ values ) => $ values ->map ->attributes () // @phpstan-ignore method.notFound
95
+ fn ($ values ) => $ values ->map ->attributes ()
96
96
)
97
97
->chunk ($ this ->config ->get ('pulse.storage.database.chunk ' ));
98
98
You can’t perform that action at this time.
0 commit comments