@@ -17,7 +17,7 @@ |
||
17 | 17 | */ |
18 | 18 | public function download(string $fileName) |
19 | 19 | { |
20 | - $filePath = public_path('files/'.$fileName); |
|
20 | + $filePath = public_path('files/' . $fileName); |
|
21 | 21 | |
22 | 22 | if (!file_exists($filePath)) { |
23 | 23 | abort(404, 'File not found.'); |
@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public bool $showModal = false; |
37 | 37 | |
38 | - public function render(): Factory|Application|View|\Illuminate\View\View |
|
38 | + public function render(): Factory | Application | View | \Illuminate\View\View |
|
39 | 39 | { |
40 | 40 | return view('livewire.discuss.create-conversation'); |
41 | 41 | } |