@@ -169,12 +169,12 @@ discard block |
||
| 169 | 169 | public function reduce(callable $callback, $accumulator = null); |
| 170 | 170 | |
| 171 | 171 | /** |
| 172 | - * Take a slice of the array |
|
| 173 | - * |
|
| 174 | - * @param int $begin Start index of slice |
|
| 175 | - * @param int $end End index of slice |
|
| 176 | - * @return Sequenceable |
|
| 177 | - */ |
|
| 172 | + * Take a slice of the array |
|
| 173 | + * |
|
| 174 | + * @param int $begin Start index of slice |
|
| 175 | + * @param int $end End index of slice |
|
| 176 | + * @return Sequenceable |
|
| 177 | + */ |
|
| 178 | 178 | public function slice(int $begin = 0, int $end = null); |
| 179 | 179 | |
| 180 | 180 | /** |
@@ -186,13 +186,13 @@ discard block |
||
| 186 | 186 | public function sort(callable $callback = null); |
| 187 | 187 | |
| 188 | 188 | /** |
| 189 | - * forEach, or "walk" the data |
|
| 190 | - * Exists primarily to provide a consistent interface, though it's seldom |
|
| 191 | - * any better than a simple php foreach. Mainly useful for chaining. |
|
| 192 | - * Named walk for historic reasons - forEach is reserved in PHP |
|
| 193 | - * |
|
| 194 | - * @param callable $callback Function to call on each element |
|
| 195 | - * @return Sequenceable |
|
| 196 | - */ |
|
| 189 | + * forEach, or "walk" the data |
|
| 190 | + * Exists primarily to provide a consistent interface, though it's seldom |
|
| 191 | + * any better than a simple php foreach. Mainly useful for chaining. |
|
| 192 | + * Named walk for historic reasons - forEach is reserved in PHP |
|
| 193 | + * |
|
| 194 | + * @param callable $callback Function to call on each element |
|
| 195 | + * @return Sequenceable |
|
| 196 | + */ |
|
| 197 | 197 | public function walk(callable $callback); |
| 198 | 198 | } |