Completed
Pull Request — master (#20)
by
unknown
02:43
created
src/ZonaServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/database/seeds/BantenprovZonaSeederMasterZona.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -72,6 +72,10 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/database/seeds/BantenprovZonaSeederZona.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -72,6 +72,10 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Http/Controllers/ZonaController.php 2 patches
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -192,7 +192,6 @@  discard block
 block discarded – undo
192 192
     /**
193 193
      * Display the specified resource.
194 194
      *
195
-     * @param  \App\Zona  $zona
196 195
      * @return \Illuminate\Http\Response
197 196
      */
198 197
     public function show($id)
@@ -210,7 +209,6 @@  discard block
 block discarded – undo
210 209
     /**
211 210
      * Show the form for editing the specified resource.
212 211
      *
213
-     * @param  \App\Zona  $zona
214 212
      * @return \Illuminate\Http\Response
215 213
      */
216 214
     public function edit($id)
@@ -269,7 +267,6 @@  discard block
 block discarded – undo
269 267
      * Update the specified resource in storage.
270 268
      *
271 269
      * @param  \Illuminate\Http\Request  $request
272
-     * @param  \App\Zona  $zona
273 270
      * @return \Illuminate\Http\Response
274 271
      */
275 272
     public function update(Request $request, $id)
@@ -323,8 +320,7 @@  discard block
 block discarded – undo
323 320
     /**
324 321
      * Remove the specified resource from storage.
325 322
      *
326
-     * @param  \App\Zona  $zona
327
-     * @return \Illuminate\Http\Response
323
+     * @return string
328 324
      */
329 325
     public function destroy($id)
330 326
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use App\Http\Controllers\Controller;
7 7
 use Illuminate\Http\Request;
8 8
 use Illuminate\Support\Facades\DB;
9
-use Bantenprov\Zona\Facades\ZonaFacade;
10 9
 
11 10
 /* Models */
12 11
 use Bantenprov\Zona\Models\Bantenprov\Zona\Zona;
Please login to merge, or discard this patch.
src/Http/Controllers/MasterZonaController.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,6 @@
 block discarded – undo
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\Zona\Facades\ZonaFacade;
10 8
 
11 9
 /* Models */
12 10
 use Bantenprov\Zona\Models\Bantenprov\Zona\MasterZona;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -177,7 +177,6 @@  discard block
 block discarded – undo
177 177
     /**
178 178
      * Display the specified resource.
179 179
      *
180
-     * @param  \App\MasterZona  $master-zona
181 180
      * @return \Illuminate\Http\Response
182 181
      */
183 182
     public function show($id)
@@ -195,7 +194,6 @@  discard block
 block discarded – undo
195 194
     /**
196 195
      * Show the form for editing the specified resource.
197 196
      *
198
-     * @param  \App\MasterZona  $master_zona
199 197
      * @return \Illuminate\Http\Response
200 198
      */
201 199
     public function edit($id)
@@ -246,7 +244,6 @@  discard block
 block discarded – undo
246 244
      * Update the specified resource in storage.
247 245
      *
248 246
      * @param  \Illuminate\Http\Request  $request
249
-     * @param  \App\MasterZona  $master_zona
250 247
      * @return \Illuminate\Http\Response
251 248
      */
252 249
     public function update(Request $request, $id)
@@ -285,8 +282,7 @@  discard block
 block discarded – undo
285 282
     /**
286 283
      * Remove the specified resource from storage.
287 284
      *
288
-     * @param  \App\MasterZona  $master_zona
289
-     * @return \Illuminate\Http\Response
285
+     * @return string
290 286
      */
291 287
     public function destroy($id)
292 288
     {
Please login to merge, or discard this patch.