| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.0185 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | 4 | public function __construct(Reducer $next_reducer, $batch_size) |
|
| 21 | { |
||
| 22 | 4 | if (!is_int($batch_size)) { |
|
| 23 | throw \InvalidArgumentException('argument #2 of Batching::__construct must be an integer'); |
||
| 24 | } |
||
| 25 | |||
| 26 | 4 | $this->batch_size = $batch_size; |
|
| 27 | 4 | $this->next_reducer = $next_reducer; |
|
| 28 | 4 | } |
|
| 29 | |||
| 57 |