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