@@ -1347,7 +1347,7 @@ foreach ($array as $key => $value) {
13471347``` php
13481348<?php
13491349/**
1350- * @phpstan-param callable(TValue, TKey $key= ):void $callback
1350+ * @phpstan-param callable(TValue, TKey $key):void $callback
13511351 * @phpstan-return AssocValue<TKey , TValue >
13521352 */
13531353public function each(callable $callback): AssocValue;
@@ -1391,7 +1391,7 @@ public function filterEmpty(): AssocValue;
13911391<?php
13921392/**
13931393 * @template TNewValue
1394- * @param callable(TValue,TKey $key= ):TNewValue $transformer
1394+ * @param callable(TValue,TKey $key):TNewValue $transformer
13951395 * @phpstan-return AssocValue<TKey , TNewValue >
13961396 */
13971397public function map(callable $transformer): AssocValue;
@@ -1532,7 +1532,7 @@ public function values(): ArrayValue;
15321532<?php
15331533/**
15341534 * @template TNewKey of int|string
1535- * @phpstan-param callable(TKey $key, TValue $value= ): TNewKey $transformer
1535+ * @phpstan-param callable(TKey $key, TValue $value): TNewKey $transformer
15361536 * @phpstan-return AssocValue<TNewKey , TValue >
15371537 */
15381538public function mapKeys(callable $transformer): AssocValue;
@@ -3916,7 +3916,7 @@ array (
39163916<?php
39173917/**
39183918 * @template TNewValue
3919- * @param callable(TValue,TKey $key= ):TNewValue $transformer
3919+ * @param callable(TValue,TKey $key):TNewValue $transformer
39203920 * @phpstan-return IterableValue<TKey , TNewValue >
39213921 */
39223922public function map(callable $transformer): IterableValue;
0 commit comments