| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function theFollowingContentLists(TableNode $table) |
||
| 32 | { |
||
| 33 | foreach ($table as $row => $columns) { |
||
| 34 | $contentList = $this->contentListFactory->create(); |
||
| 35 | $this->fillObject($contentList, $columns); |
||
| 36 | $this->entityManager->persist($contentList); |
||
| 37 | } |
||
| 38 | |||
| 39 | $this->entityManager->flush(); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |