@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | * Create a collection based on a range generator |
| 20 | 20 | * @param int|float $low start value |
| 21 | 21 | * @param int|float $high end value |
| 22 | - * @param int|float $step increment |
|
| 22 | + * @param integer $step increment |
|
| 23 | 23 | * @return Collection |
| 24 | 24 | */ |
| 25 | 25 | public static function range($low, $high, $step = 1) : Collection |
@@ -249,7 +249,6 @@ discard block |
||
| 249 | 249 | } |
| 250 | 250 | /** |
| 251 | 251 | * Append more values to the collection |
| 252 | - * @param iterable $values the values to add |
|
| 253 | 252 | * @return Collection |
| 254 | 253 | */ |
| 255 | 254 | public function extend($source) : Collection |
@@ -261,7 +260,6 @@ discard block |
||
| 261 | 260 | } |
| 262 | 261 | /** |
| 263 | 262 | * Append more values to the collection |
| 264 | - * @param iterable $values the values to add |
|
| 265 | 263 | * @return Collection |
| 266 | 264 | */ |
| 267 | 265 | public function merge($source) : Collection |