Completed
Push — master ( 6731e6...94ee55 )
by Florian
10s
created
src/Link/Map.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * @param callable $callback
17 17
      *
18
-     * @return Chain
18
+     * @return Map
19 19
      */
20 20
     public function map(callable $callback)
21 21
     {
Please login to merge, or discard this patch.
src/Link/Merge.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * @param Chain|array $array   Array to merge with
21 21
      * @param array       $options Options, including `recursive` to merge arrays recursive.
22 22
      *
23
-     * @return Chain
23
+     * @return Merge
24 24
      */
25 25
     public function merge($array, array $options = [])
26 26
     {
Please login to merge, or discard this patch.
src/Link/Pad.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      * @param int   $size
15 15
      * @param mixed $value
16 16
      *
17
-     * @return Chain
17
+     * @return Pad
18 18
      */
19 19
     public function pad($size, $value)
20 20
     {
Please login to merge, or discard this patch.
src/Link/Push.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     /**
14 14
      * @param mixed $element
15 15
      *
16
-     * @return Chain
16
+     * @return Push
17 17
      */
18 18
     public function push($element)
19 19
     {
Please login to merge, or discard this patch.
src/Link/Replace.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * @param Chain|array $array
17 17
      *
18
-     * @return Chain
18
+     * @return Replace
19 19
      */
20 20
     public function replace($array)
21 21
     {
Please login to merge, or discard this patch.
src/Link/Reverse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * @param bool $preserveKeys
17 17
      *
18
-     * @return Chain
18
+     * @return Reverse
19 19
      */
20 20
     public function reverse($preserveKeys = false)
21 21
     {
Please login to merge, or discard this patch.
src/Link/Shuffle.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 trait Shuffle
12 12
 {
13 13
     /**
14
-     * @return Chain
14
+     * @return Shuffle
15 15
      */
16 16
     public function shuffle()
17 17
     {
Please login to merge, or discard this patch.
src/Link/Sort.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * @param int|callable $sortBy
19 19
      * @param array        $options
20 20
      *
21
-     * @return Chain
21
+     * @return Sort
22 22
      */
23 23
     public function sort($sortBy = SORT_REGULAR, array $options = [])
24 24
     {
Please login to merge, or discard this patch.
src/Link/SortKeys.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * @param int|callable $sortBy
19 19
      * @param array        $options
20 20
      *
21
-     * @return Chain
21
+     * @return SortKeys
22 22
      */
23 23
     public function sortKeys($sortBy = SORT_REGULAR, array $options = [])
24 24
     {
Please login to merge, or discard this patch.