Completed
Push — master ( c8668a...a2fb60 )
by
unknown
01:31
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   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -104,7 +104,6 @@  discard block
 block discarded – undo
104 104
     /**
105 105
      * Display the specified resource.
106 106
      *
107
-     * @param  \App\DataAkademik  $data_akademik
108 107
      * @return \Illuminate\Http\Response
109 108
      */
110 109
     public function store(Request $request)
@@ -148,7 +147,6 @@  discard block
 block discarded – undo
148 147
     /**
149 148
      * Store a newly created resource in storage.
150 149
      *
151
-     * @param  \Illuminate\Http\Request  $request
152 150
      * @return \Illuminate\Http\Response
153 151
      */
154 152
     public function show($id)
@@ -166,7 +164,6 @@  discard block
 block discarded – undo
166 164
     /**
167 165
      * Show the form for editing the specified resource.
168 166
      *
169
-     * @param  \App\DataAkademik  $data_akademik
170 167
      * @return \Illuminate\Http\Response
171 168
      */
172 169
     public function edit($id)
@@ -186,7 +183,6 @@  discard block
 block discarded – undo
186 183
      * Update the specified resource in storage.
187 184
      *
188 185
      * @param  \Illuminate\Http\Request  $request
189
-     * @param  \App\DataAkademik  $data_akademik
190 186
      * @return \Illuminate\Http\Response
191 187
      */
192 188
     public function update(Request $request, $id)
@@ -239,8 +235,7 @@  discard block
 block discarded – undo
239 235
     /**
240 236
      * Remove the specified resource from storage.
241 237
      *
242
-     * @param  \App\DataAkademik  $data_akademik
243
-     * @return \Illuminate\Http\Response
238
+     * @return string
244 239
      */
245 240
     public function destroy($id)
246 241
     {
Please login to merge, or discard this patch.
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\DataAkademik\Facades\DataAkademikFacade;
9 8
 use App\User;
10 9
 
11 10
 /* Models */
Please login to merge, or discard this patch.