@@ -58,7 +58,7 @@ |
||
58 | 58 | /** |
59 | 59 | * Get the services provided by the provider. |
60 | 60 | * |
61 | - * @return array |
|
61 | + * @return string[] |
|
62 | 62 | */ |
63 | 63 | public function provides() |
64 | 64 | { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | /** |
66 | 66 | * Show the form for creating a new resource. |
67 | 67 | * |
68 | - * @return \Illuminate\Http\Response |
|
68 | + * @return \Illuminate\Http\JsonResponse |
|
69 | 69 | */ |
70 | 70 | public function create() |
71 | 71 | { |
@@ -80,8 +80,7 @@ discard block |
||
80 | 80 | /** |
81 | 81 | * Display the specified resource. |
82 | 82 | * |
83 | - * @param \App\GroupEgovernment $group_egovernment |
|
84 | - * @return \Illuminate\Http\Response |
|
83 | + * @return \Illuminate\Http\JsonResponse |
|
85 | 84 | */ |
86 | 85 | public function store(Request $request) |
87 | 86 | { |
@@ -120,8 +119,7 @@ discard block |
||
120 | 119 | /** |
121 | 120 | * Store a newly created resource in storage. |
122 | 121 | * |
123 | - * @param \Illuminate\Http\Request $request |
|
124 | - * @return \Illuminate\Http\Response |
|
122 | + * @return \Illuminate\Http\JsonResponse |
|
125 | 123 | */ |
126 | 124 | public function show($id) |
127 | 125 | { |
@@ -136,8 +134,7 @@ discard block |
||
136 | 134 | /** |
137 | 135 | * Show the form for editing the specified resource. |
138 | 136 | * |
139 | - * @param \App\GroupEgovernment $group_egovernment |
|
140 | - * @return \Illuminate\Http\Response |
|
137 | + * @return \Illuminate\Http\JsonResponse |
|
141 | 138 | */ |
142 | 139 | public function edit($id) |
143 | 140 | { |
@@ -153,8 +150,7 @@ discard block |
||
153 | 150 | * Update the specified resource in storage. |
154 | 151 | * |
155 | 152 | * @param \Illuminate\Http\Request $request |
156 | - * @param \App\GroupEgovernment $group_egovernment |
|
157 | - * @return \Illuminate\Http\Response |
|
153 | + * @return \Illuminate\Http\JsonResponse |
|
158 | 154 | */ |
159 | 155 | public function update(Request $request, $id) |
160 | 156 | { |
@@ -201,8 +197,7 @@ discard block |
||
201 | 197 | /** |
202 | 198 | * Remove the specified resource from storage. |
203 | 199 | * |
204 | - * @param \App\GroupEgovernment $group_egovernment |
|
205 | - * @return \Illuminate\Http\Response |
|
200 | + * @return string |
|
206 | 201 | */ |
207 | 202 | public function destroy($id) |
208 | 203 | { |
@@ -5,7 +5,6 @@ |
||
5 | 5 | /* Require */ |
6 | 6 | use App\Http\Controllers\Controller; |
7 | 7 | use Illuminate\Http\Request; |
8 | -use Bantenprov\BudgetAbsorption\Facades\GroupEgovernmentFacade; |
|
9 | 8 | |
10 | 9 | /* Models */ |
11 | 10 | use Bantenprov\GroupEgovernment\Models\Bantenprov\GroupEgovernment\GroupEgovernment; |