Completed
Push — master ( df93e2...919216 )
by
unknown
06:05 queued 01:28
created
src/SktmServiceProvider.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/BantenprovSktmSeederMasterSktm.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/BantenprovSktmSeederSktm.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/MasterSktmController.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\Sktm\Facades\SktmFacade;
10 8
 
11 9
 /* Models */
12 10
 use Bantenprov\Sktm\Models\Bantenprov\Sktm\MasterSktm;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -175,7 +175,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Http/Controllers/SktmController.php 2 patches
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -226,7 +226,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     {
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\Sktm\Facades\SktmFacade;
10 9
 
11 10
 /* Models */
12 11
 use Bantenprov\Sktm\Models\Bantenprov\Sktm\Sktm;
Please login to merge, or discard this patch.