Completed
Push — master ( 200f37...281c6e )
by
unknown
10s
created
src/Http/Controllers/SiswaController.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 /* Require */
6 6
 use App\Http\Controllers\Controller;
7 7
 use Illuminate\Http\Request;
8
-use Bantenprov\Siswa\Facades\SiswaFacade;
9 8
 
10 9
 /* Models */
11 10
 use Bantenprov\Siswa\Models\Bantenprov\Siswa\Siswa;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -229,7 +229,6 @@  discard block
 block discarded – undo
229 229
     /**
230 230
      * Display the specified resource.
231 231
      *
232
-     * @param  \App\Siswa  $siswa
233 232
      * @return \Illuminate\Http\Response
234 233
      */
235 234
     public function show($id)
@@ -247,7 +246,6 @@  discard block
 block discarded – undo
247 246
     /**
248 247
      * Show the form for editing the specified resource.
249 248
      *
250
-     * @param  \App\Siswa  $siswa
251 249
      * @return \Illuminate\Http\Response
252 250
      */
253 251
     public function edit($id)
@@ -265,7 +263,6 @@  discard block
 block discarded – undo
265 263
      * Update the specified resource in storage.
266 264
      *
267 265
      * @param  \Illuminate\Http\Request  $request
268
-     * @param  \App\Siswa  $siswa
269 266
      * @return \Illuminate\Http\Response
270 267
      */
271 268
     public function update(Request $request, $id)
@@ -349,8 +346,7 @@  discard block
 block discarded – undo
349 346
     /**
350 347
      * Remove the specified resource from storage.
351 348
      *
352
-     * @param  \App\Siswa  $siswa
353
-     * @return \Illuminate\Http\Response
349
+     * @return string
354 350
      */
355 351
     public function destroy($id)
356 352
     {
Please login to merge, or discard this patch.
src/SiswaServiceProvider.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/BantenprovSiswaSeeder.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -75,6 +75,10 @@
 block discarded – undo
75 75
         printf($this->ORANGE.$text.$this->NC);
76 76
     }
77 77
     /* text color: green */
78
+
79
+    /**
80
+     * @param string $text
81
+     */
78 82
     protected function greenText($text)
79 83
     {
80 84
         printf($this->GRN.$text.$this->NC);
Please login to merge, or discard this patch.