| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class ReadAllForum extends AbstractController |
||
| 12 | { |
||
| 13 | private MarkAsReadService $markAsReadService; |
||
| 14 | |||
| 15 | public function __construct(MarkAsReadService $markAsReadService) |
||
| 16 | { |
||
| 17 | $this->markAsReadService = $markAsReadService; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return JsonResponse |
||
| 22 | */ |
||
| 23 | public function __invoke(): JsonResponse |
||
| 27 | } |
||
| 28 | } |
||
| 29 |