| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 34 | public function __construct( |
|
| 25 | ?int $maxBatchSize = null, |
||
| 26 | bool $shouldBatch = true, |
||
| 27 | bool $shouldCache = true |
||
| 28 | ) { |
||
| 29 | 34 | $this->validateMaxBatchSizeOption($maxBatchSize); |
|
| 30 | 33 | $this->shouldBatch = $shouldBatch; |
|
| 31 | 33 | $this->maxBatchSize = $maxBatchSize; |
|
| 32 | 33 | $this->shouldCache = $shouldCache; |
|
| 33 | 33 | } |
|
| 34 | |||
| 57 |