| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.0185 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 16 | public function __construct(iterable $items, EntityManagerInterface $em, int $chunkSize = 100) |
|
| 19 | { |
||
| 20 | 16 | if ($items instanceof IterableResult) { |
|
| 21 | $items = new ORMIterableResultDecorator($items); |
||
| 22 | } |
||
| 23 | |||
| 24 | 16 | $this->items = $items; |
|
| 25 | 16 | $this->em = $em; |
|
| 26 | 16 | $this->chunkSize = $chunkSize; |
|
| 27 | 16 | } |
|
| 69 |