1 | <?php |
||
17 | class DashboardController extends Controller |
||
18 | { |
||
19 | /** |
||
20 | * Get table columns |
||
21 | * @return \Illuminate\Http\JsonResponse |
||
22 | */ |
||
23 | 1 | public function tableColumn() : JsonResponse |
|
27 | |||
28 | /** |
||
29 | * Get list reports |
||
30 | * @return JsonResponse |
||
31 | */ |
||
32 | public function getReports() : JsonResponse |
||
50 | |||
51 | /** |
||
52 | * Get count not read reports |
||
53 | * @return JsonResponse |
||
54 | */ |
||
55 | 2 | public function getNotificationCount() : JsonResponse |
|
61 | |||
62 | /** |
||
63 | * Update report |
||
64 | * @param Request $request |
||
65 | * @return JsonResponse |
||
66 | */ |
||
67 | 1 | public function updateReport(Request $request) : JsonResponse |
|
77 | |||
78 | /** |
||
79 | * @param string $className |
||
80 | * @return mixed= |
||
|
|||
81 | */ |
||
82 | 2 | public function downloadFile(string $className) |
|
94 | } |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.