Completed
Push — master ( 250808...71faef )
by
unknown
07:37 queued 05:50
created
src/DataAkademikServiceProvider.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/BantenprovDataAkademikSeeder.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -69,6 +69,10 @@
 block discarded – undo
69 69
         echo"\n\n";
70 70
     }
71 71
     /* text color: orange */
72
+
73
+    /**
74
+     * @param string $text
75
+     */
72 76
     protected function orangeText($text)
73 77
     {
74 78
         printf($this->ORANGE.$text.$this->NC);
Please login to merge, or discard this patch.
src/Http/Controllers/DataAkademikController.php 2 patches
Doc Comments   -5 removed lines patch added patch discarded remove patch
@@ -122,7 +122,6 @@  discard block
 block discarded – undo
122 122
     /**
123 123
      * Display the specified resource.
124 124
      *
125
-     * @param  \App\DataAkademik  $data_akademik
126 125
      * @return \Illuminate\Http\Response
127 126
      */
128 127
     public function store(Request $request)
@@ -189,7 +188,6 @@  discard block
 block discarded – undo
189 188
     /**
190 189
      * Store a newly created resource in storage.
191 190
      *
192
-     * @param  \Illuminate\Http\Request  $request
193 191
      * @return \Illuminate\Http\Response
194 192
      */
195 193
     public function show($id)
@@ -216,7 +214,6 @@  discard block
 block discarded – undo
216 214
     /**
217 215
      * Show the form for editing the specified resource.
218 216
      *
219
-     * @param  \App\DataAkademik  $data_akademik
220 217
      * @return \Illuminate\Http\Response
221 218
      */
222 219
     public function edit($id)
@@ -245,7 +242,6 @@  discard block
 block discarded – undo
245 242
      * Update the specified resource in storage.
246 243
      *
247 244
      * @param  \Illuminate\Http\Request  $request
248
-     * @param  \App\DataAkademik  $data_akademik
249 245
      * @return \Illuminate\Http\Response
250 246
      */
251 247
     public function update(Request $request, $id)
@@ -325,7 +321,6 @@  discard block
 block discarded – undo
325 321
     /**
326 322
      * Remove the specified resource from storage.
327 323
      *
328
-     * @param  \App\DataAkademik  $data_akademik
329 324
      * @return \Illuminate\Http\Response
330 325
      */
331 326
 
Please login to merge, or discard this patch.
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 Bantenprov\DataAkademik\Facades\DataAkademikFacade;
9
-use Bantenprov\Sekolah\Models\Bantenprov\Sekolah\AdminSekolah;
10 8
 use App\User;
11 9
 
12 10
 /* Models */
Please login to merge, or discard this patch.