File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed
src/Service/Kms/src/Result Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,9 @@ protected function populateResult(Response $response): void
184184 }
185185
186186 /**
187- * @return list<string>
187+ * @psalm-suppress MoreSpecificReturnType
188+ *
189+ * @return list<EncryptionAlgorithmSpec::*>
188190 */
189191 private function populateResultEncryptionAlgorithmSpecList (array $ json ): array
190192 {
@@ -196,11 +198,16 @@ private function populateResultEncryptionAlgorithmSpecList(array $json): array
196198 }
197199 }
198200
201+ /**
202+ * @psalm-suppress LessSpecificReturnStatement
203+ */
199204 return $ items ;
200205 }
201206
202207 /**
203- * @return list<string>
208+ * @psalm-suppress MoreSpecificReturnType
209+ *
210+ * @return list<KeyAgreementAlgorithmSpec::*>
204211 */
205212 private function populateResultKeyAgreementAlgorithmSpecList (array $ json ): array
206213 {
@@ -212,11 +219,16 @@ private function populateResultKeyAgreementAlgorithmSpecList(array $json): array
212219 }
213220 }
214221
222+ /**
223+ * @psalm-suppress LessSpecificReturnStatement
224+ */
215225 return $ items ;
216226 }
217227
218228 /**
219- * @return list<string>
229+ * @psalm-suppress MoreSpecificReturnType
230+ *
231+ * @return list<SigningAlgorithmSpec::*>
220232 */
221233 private function populateResultSigningAlgorithmSpecList (array $ json ): array
222234 {
@@ -228,6 +240,9 @@ private function populateResultSigningAlgorithmSpecList(array $json): array
228240 }
229241 }
230242
243+ /**
244+ * @psalm-suppress LessSpecificReturnStatement
245+ */
231246 return $ items ;
232247 }
233248}
You can’t perform that action at this time.
0 commit comments