| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 5 | public function persist($entity, $batchCount = 20, $whiteList = [], $blackList = []) |
|
| 30 | { |
||
| 31 | 5 | ++$this->batch; |
|
| 32 | 5 | $this->whiteList = $whiteList; |
|
| 33 | 5 | $this->blackList = $blackList; |
|
| 34 | |||
| 35 | 5 | $this->em->persist($entity); |
|
| 36 | |||
| 37 | 5 | if ($this->batch >= $batchCount) { |
|
| 38 | 1 | $this->writeBatch(); |
|
| 39 | return true; |
||
| 40 | 5 | } |
|
| 41 | |||
| 42 | 3 | return false; |
|
| 43 | } |
||
| 73 |