@@ -1923,7 +1923,7 @@ discard block |
||
1923 | 1923 | * |
1924 | 1924 | * @param float|int|string $low <p>First value of the sequence.</p> |
1925 | 1925 | * @param float|int|string $high <p>The sequence is ended upon reaching the end value.</p> |
1926 | - * @param float|int $step <p>Used as the increment between elements in the sequence.</p> |
|
1926 | + * @param integer $step <p>Used as the increment between elements in the sequence.</p> |
|
1927 | 1927 | * |
1928 | 1928 | * @return static |
1929 | 1929 | * <p>(Immutable) Returns an new instance of the Arrayy object.</p> |
@@ -2715,7 +2715,7 @@ discard block |
||
2715 | 2715 | /** |
2716 | 2716 | * Get the first key from the current array. |
2717 | 2717 | * |
2718 | - * @return mixed|null |
|
2718 | + * @return integer|null |
|
2719 | 2719 | * <p>Return null if there wasn't a element.</p> |
2720 | 2720 | * |
2721 | 2721 | * @phpstan-return TKey|null |
@@ -4126,7 +4126,7 @@ discard block |
||
4126 | 4126 | /** |
4127 | 4127 | * Get the last key from the current array. |
4128 | 4128 | * |
4129 | - * @return mixed|null |
|
4129 | + * @return null|integer |
|
4130 | 4130 | * <p>Return null if there wasn't a element.</p> |
4131 | 4131 | * @psalm-mutation-free |
4132 | 4132 | */ |
@@ -4586,7 +4586,7 @@ discard block |
||
4586 | 4586 | /** |
4587 | 4587 | * Get the most used value from the array. |
4588 | 4588 | * |
4589 | - * @return mixed|null |
|
4589 | + * @return integer|null |
|
4590 | 4590 | * <p>(Immutable) Return null if there wasn't a element.</p> |
4591 | 4591 | * |
4592 | 4592 | * @phpstan-return T|null |