| @@ -80,7 +80,6 @@ discard block | ||
| 80 | 80 | /** | 
| 81 | 81 | * Display the specified resource. | 
| 82 | 82 | * | 
| 83 | - * @param \App\Zona $zona | |
| 84 | 83 | * @return \Illuminate\Http\Response | 
| 85 | 84 | */ | 
| 86 | 85 | public function store(Request $request) | 
| @@ -120,7 +119,6 @@ discard block | ||
| 120 | 119 | /** | 
| 121 | 120 | * Store a newly created resource in storage. | 
| 122 | 121 | * | 
| 123 | - * @param \Illuminate\Http\Request $request | |
| 124 | 122 | * @return \Illuminate\Http\Response | 
| 125 | 123 | */ | 
| 126 | 124 | public function show($id) | 
| @@ -136,7 +134,6 @@ discard block | ||
| 136 | 134 | /** | 
| 137 | 135 | * Show the form for editing the specified resource. | 
| 138 | 136 | * | 
| 139 | - * @param \App\Zona $zona | |
| 140 | 137 | * @return \Illuminate\Http\Response | 
| 141 | 138 | */ | 
| 142 | 139 | public function edit($id) | 
| @@ -153,7 +150,6 @@ discard block | ||
| 153 | 150 | * Update the specified resource in storage. | 
| 154 | 151 | * | 
| 155 | 152 | * @param \Illuminate\Http\Request $request | 
| 156 | - * @param \App\Zona $zona | |
| 157 | 153 | * @return \Illuminate\Http\Response | 
| 158 | 154 | */ | 
| 159 | 155 | public function update(Request $request, $id) | 
| @@ -201,8 +197,7 @@ discard block | ||
| 201 | 197 | /** | 
| 202 | 198 | * Remove the specified resource from storage. | 
| 203 | 199 | * | 
| 204 | - * @param \App\Zona $zona | |
| 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\ZonaFacade; | |
| 9 | 8 | |
| 10 | 9 | /* Models */ | 
| 11 | 10 | use Bantenprov\Zona\Models\Bantenprov\Zona\Zona; | 
| @@ -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); |