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 @@ -135,15 +135,15 @@ public function setOptions(): void
135
135
$ this ->options ()->add ('bypass_map_validation ' , $ this ->config ['options ' ]['bypass_map_validation ' ] ?? false );
136
136
137
137
if (! empty ($ this ->config ['options ' ]['retires ' ])) {
138
- $ this ->options ()->add ('retires ' , $ this ->config ['options ' ]['retires ' ]);
138
+ $ this ->options ()->add ('retires ' , ( int ) $ this ->config ['options ' ]['retires ' ]);
139
139
}
140
140
141
141
if (isset ($ this ->config ['options ' ]['meta_header ' ])) {
142
142
$ this ->options ()->add ('meta_header ' , $ this ->config ['options ' ]['meta_header ' ]);
143
143
}
144
144
145
145
if (isset ($ this ->config ['options ' ]['default_limit ' ])) {
146
- $ this ->defaultQueryLimit = $ this ->config ['options ' ]['default_limit ' ];
146
+ $ this ->defaultQueryLimit = ( int ) $ this ->config ['options ' ]['default_limit ' ];
147
147
}
148
148
}
149
149
You can’t perform that action at this time.
0 commit comments