@@ -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 | { |
@@ -72,6 +72,10 @@ |
||
72 | 72 | echo"\n\n"; |
73 | 73 | } |
74 | 74 | /* text color: orange */ |
75 | + |
|
76 | + /** |
|
77 | + * @param string $text |
|
78 | + */ |
|
75 | 79 | protected function orangeText($text) |
76 | 80 | { |
77 | 81 | printf($this->ORANGE.$text.$this->NC); |
@@ -72,6 +72,10 @@ |
||
72 | 72 | echo"\n\n"; |
73 | 73 | } |
74 | 74 | /* text color: orange */ |
75 | + |
|
76 | + /** |
|
77 | + * @param string $text |
|
78 | + */ |
|
75 | 79 | protected function orangeText($text) |
76 | 80 | { |
77 | 81 | printf($this->ORANGE.$text.$this->NC); |
@@ -5,8 +5,6 @@ |
||
5 | 5 | /* Require */ |
6 | 6 | use App\Http\Controllers\Controller; |
7 | 7 | use Illuminate\Http\Request; |
8 | -use Illuminate\Support\Facades\DB; |
|
9 | -use Bantenprov\Sktm\Facades\SktmFacade; |
|
10 | 8 | |
11 | 9 | /* Models */ |
12 | 10 | use Bantenprov\Sktm\Models\Bantenprov\Sktm\MasterSktm; |
@@ -175,7 +175,6 @@ discard block |
||
175 | 175 | /** |
176 | 176 | * Display the specified resource. |
177 | 177 | * |
178 | - * @param \App\MasterSktm $master_sktm |
|
179 | 178 | * @return \Illuminate\Http\Response |
180 | 179 | */ |
181 | 180 | public function show($id) |
@@ -193,7 +192,6 @@ discard block |
||
193 | 192 | /** |
194 | 193 | * Show the form for editing the specified resource. |
195 | 194 | * |
196 | - * @param \App\MasterSktm $master_sktm |
|
197 | 195 | * @return \Illuminate\Http\Response |
198 | 196 | */ |
199 | 197 | public function edit($id) |
@@ -244,7 +242,6 @@ discard block |
||
244 | 242 | * Update the specified resource in storage. |
245 | 243 | * |
246 | 244 | * @param \Illuminate\Http\Request $request |
247 | - * @param \App\MasterSktm $master_sktm |
|
248 | 245 | * @return \Illuminate\Http\Response |
249 | 246 | */ |
250 | 247 | public function update(Request $request, $id) |
@@ -282,8 +279,7 @@ discard block |
||
282 | 279 | /** |
283 | 280 | * Remove the specified resource from storage. |
284 | 281 | * |
285 | - * @param \App\MasterSktm $master_sktm |
|
286 | - * @return \Illuminate\Http\Response |
|
282 | + * @return string |
|
287 | 283 | */ |
288 | 284 | public function destroy($id) |
289 | 285 | { |
@@ -226,7 +226,6 @@ discard block |
||
226 | 226 | /** |
227 | 227 | * Display the specified resource. |
228 | 228 | * |
229 | - * @param \App\Sktm $nilai |
|
230 | 229 | * @return \Illuminate\Http\Response |
231 | 230 | */ |
232 | 231 | public function show($id) |
@@ -244,7 +243,6 @@ discard block |
||
244 | 243 | /** |
245 | 244 | * Show the form for editing the specified resource. |
246 | 245 | * |
247 | - * @param \App\Sktm $nilai |
|
248 | 246 | * @return \Illuminate\Http\Response |
249 | 247 | */ |
250 | 248 | public function edit($id) |
@@ -301,7 +299,6 @@ discard block |
||
301 | 299 | * Update the specified resource in storage. |
302 | 300 | * |
303 | 301 | * @param \Illuminate\Http\Request $request |
304 | - * @param \App\Sktm $nilai |
|
305 | 302 | * @return \Illuminate\Http\Response |
306 | 303 | */ |
307 | 304 | public function update(Request $request, $id) |
@@ -368,8 +365,7 @@ discard block |
||
368 | 365 | /** |
369 | 366 | * Remove the specified resource from storage. |
370 | 367 | * |
371 | - * @param \App\Sktm $nilai |
|
372 | - * @return \Illuminate\Http\Response |
|
368 | + * @return string |
|
373 | 369 | */ |
374 | 370 | public function destroy($id) |
375 | 371 | { |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use App\Http\Controllers\Controller; |
7 | 7 | use Illuminate\Http\Request; |
8 | 8 | use Illuminate\Support\Facades\DB; |
9 | -use Bantenprov\Sktm\Facades\SktmFacade; |
|
10 | 9 | |
11 | 10 | /* Models */ |
12 | 11 | use Bantenprov\Sktm\Models\Bantenprov\Sktm\Sktm; |