Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 9 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
21 | public function __construct( |
||
22 | FactoryInterface $slideshowFactory, |
||
23 | EntityManagerInterface $entityManager, |
||
24 | ArticleRepositoryInterface $articleRepository |
||
25 | ) { |
||
26 | $this->slideshowFactory = $slideshowFactory; |
||
27 | $this->entityManager = $entityManager; |
||
28 | $this->articleRepository = $articleRepository; |
||
29 | } |
||
30 | |||
48 |