1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Ignore falsable return for array_combine

This commit is contained in:
Matthew Brown 2019-05-05 16:42:36 -04:00
parent 399a337e09
commit 721865d14b

View File

@ -58,6 +58,7 @@ function array_intersect_key(array $arr, array $arr2, array $arr3 = null, array
* @param array<mixed, TKey> $arr
* @param array<mixed, TValue> $arr2
* @return array<TKey, TValue>|false
* @psalm-ignore-falsable-return
*/
function array_combine(array $arr, array $arr2) {}