Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
25 | 5 | public function persist($entity, $batchCount = 20, $whiteList = [], $blackList = []) |
|
26 | { |
||
27 | 5 | ++$this->batch; |
|
28 | 5 | $this->whiteList = $whiteList; |
|
29 | 5 | $this->blackList = $blackList; |
|
30 | |||
31 | 5 | $this->em->persist($entity); |
|
32 | |||
33 | 5 | if ($this->batch >= $batchCount) { |
|
34 | 1 | $this->writeBatch(); |
|
35 | } |
||
66 |