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