| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | 3 | public function step($result, $current) |
|
| 36 | { |
||
| 37 | 3 | $this->current_batch[] = $current; |
|
| 38 | 3 | if (count($this->current_batch) >= $this->batch_size) { |
|
| 39 | 3 | $batch = $this->current_batch; |
|
| 40 | 3 | $this->current_batch = []; |
|
| 41 | |||
| 42 | 3 | return $this->next_reducer->step($result, $batch); |
|
| 43 | } |
||
| 44 | |||
| 45 | 3 | return $result; |
|
| 46 | } |
||
| 47 | |||
| 57 |