Browse Source

Ignore invalid psalm error.

ADmad 5 years ago
parent
commit
3aa74c341b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/Collection/CollectionTrait.php

+ 1 - 0
src/Collection/CollectionTrait.php

@@ -930,6 +930,7 @@ trait CollectionTrait
         $changeIndex = $lastIndex;
 
         while (!($changeIndex === 0 && $currentIndexes[0] === $collectionArraysCounts[0])) {
+            /** @psalm-suppress ArgumentTypeCoercion */
             $currentCombination = array_map(function ($value, $keys, $index) {
                 return $value[$keys[$index]];
             }, $collectionArrays, $collectionArraysKeys, $currentIndexes);