| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class ForumController extends AbstractController |
||
| 15 | { |
||
| 16 | private MarkAsReadService $markAsReadService; |
||
| 17 | |||
| 18 | public function __construct(MarkAsReadService $markAsReadService) |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return JsonResponse |
||
| 25 | */ |
||
| 26 | public function readAll(): JsonResponse |
||
| 30 | } |
||
| 31 | |||
| 32 | |||
| 33 | |||
| 34 | /** |
||
| 35 | * @param Forum $forum |
||
| 36 | * @return JsonResponse |
||
| 37 | */ |
||
| 38 | public function readForum(Forum $forum): JsonResponse |
||
| 44 |