Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 13 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
34 | public function theFollowingContentLists(TableNode $table) |
||
35 | { |
||
36 | foreach ($table as $row => $columns) { |
||
37 | $slideshow = $this->slideshowFactory->create(); |
||
38 | |||
39 | $columns['article'] = $this->articleRepository->findOneBy(['title' => $columns['article']]); |
||
40 | |||
41 | $this->fillObject($slideshow, $columns); |
||
42 | $this->entityManager->persist($slideshow); |
||
43 | } |
||
44 | |||
45 | $this->entityManager->flush(); |
||
46 | } |
||
47 | } |
||
48 |