| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 84.62% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class NewsManager |
||
| 13 | { |
||
| 14 | /** @var EntityManagerInterface **/ |
||
| 15 | protected $em; |
||
| 16 | |||
| 17 | 1 | public function __construct(EntityManagerInterface $em) |
|
| 18 | { |
||
| 19 | 1 | $this->em = $em; |
|
| 20 | 1 | } |
|
| 21 | |||
| 22 | public function getCommunityNews(Community $community): array |
||
| 25 | } |
||
| 26 | |||
| 27 | 1 | public function create(Community $community, string $category, array $data): News |
|
| 38 | } |
||
| 39 | } |