@@ -15,7 +15,7 @@ |
||
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 | { |
@@ -20,7 +20,7 @@ |
||
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 | { |
@@ -14,7 +14,7 @@ |
||
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 | { |
@@ -13,7 +13,7 @@ |
||
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 | { |
@@ -15,7 +15,7 @@ |
||
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 | { |
@@ -15,7 +15,7 @@ |
||
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 | { |
@@ -11,7 +11,7 @@ |
||
11 | 11 | trait Shuffle |
12 | 12 | { |
13 | 13 | /** |
14 | - * @return Chain |
|
14 | + * @return Shuffle |
|
15 | 15 | */ |
16 | 16 | public function shuffle() |
17 | 17 | { |
@@ -18,7 +18,7 @@ |
||
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 | { |
@@ -18,7 +18,7 @@ |
||
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 | { |