Completed
Push — master ( d26e7d...811b94 )
by Lars
02:24
created
src/Arrayy.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1932,7 +1932,7 @@  discard block
 block discarded – undo
1932 1932
      *
1933 1933
      * @param float|int|string $low  <p>First value of the sequence.</p>
1934 1934
      * @param float|int|string $high <p>The sequence is ended upon reaching the end value.</p>
1935
-     * @param float|int        $step <p>Used as the increment between elements in the sequence.</p>
1935
+     * @param integer        $step <p>Used as the increment between elements in the sequence.</p>
1936 1936
      *
1937 1937
      * @return static
1938 1938
      *                <p>(Immutable) Returns an new instance of the Arrayy object.</p>
@@ -2733,7 +2733,7 @@  discard block
 block discarded – undo
2733 2733
     /**
2734 2734
      * Get the first key from the current array.
2735 2735
      *
2736
-     * @return mixed|null
2736
+     * @return integer|null
2737 2737
      *                    <p>Return null if there wasn't a element.</p>
2738 2738
      *
2739 2739
      * @phpstan-return TKey|null
@@ -4145,7 +4145,7 @@  discard block
 block discarded – undo
4145 4145
     /**
4146 4146
      * Get the last key from the current array.
4147 4147
      *
4148
-     * @return mixed|null
4148
+     * @return null|integer
4149 4149
      *                    <p>Return null if there wasn't a element.</p>
4150 4150
      * @psalm-mutation-free
4151 4151
      */
@@ -4605,7 +4605,7 @@  discard block
 block discarded – undo
4605 4605
     /**
4606 4606
      * Get the most used value from the array.
4607 4607
      *
4608
-     * @return mixed|null
4608
+     * @return integer|null
4609 4609
      *                    <p>(Immutable) Return null if there wasn't an element.</p>
4610 4610
      *
4611 4611
      * @phpstan-return T|null
Please login to merge, or discard this patch.