Completed
Push — master ( 097c31...a9c3e9 )
by
unknown
10s
created
src/Http/Controllers/SiswaController.php 2 patches
Doc Comments   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -88,7 +88,6 @@  discard block
 block discarded – undo
88 88
     /**
89 89
      * Display the specified resource.
90 90
      *
91
-     * @param  \App\Siswa  $siswa
92 91
      * @return \Illuminate\Http\Response
93 92
      */
94 93
     public function store(Request $request)
@@ -131,7 +130,6 @@  discard block
 block discarded – undo
131 130
     /**
132 131
      * Store a newly created resource in storage.
133 132
      *
134
-     * @param  \Illuminate\Http\Request  $request
135 133
      * @return \Illuminate\Http\Response
136 134
      */
137 135
     public function show($id)
@@ -147,7 +145,6 @@  discard block
 block discarded – undo
147 145
     /**
148 146
      * Show the form for editing the specified resource.
149 147
      *
150
-     * @param  \App\Siswa  $siswa
151 148
      * @return \Illuminate\Http\Response
152 149
      */
153 150
     public function edit($id)
@@ -165,7 +162,6 @@  discard block
 block discarded – undo
165 162
      * Update the specified resource in storage.
166 163
      *
167 164
      * @param  \Illuminate\Http\Request  $request
168
-     * @param  \App\Siswa  $siswa
169 165
      * @return \Illuminate\Http\Response
170 166
      */
171 167
     public function update(Request $request, $id)
@@ -217,8 +213,7 @@  discard block
 block discarded – undo
217 213
     /**
218 214
      * Remove the specified resource from storage.
219 215
      *
220
-     * @param  \App\Siswa  $siswa
221
-     * @return \Illuminate\Http\Response
216
+     * @return string
222 217
      */
223 218
     public function destroy($id)
224 219
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 /* Require */
4 4
 use App\Http\Controllers\Controller;
5 5
 use Illuminate\Http\Request;
6
-use Bantenprov\Siswa\Facades\SiswaFacade;
7 6
 /* Models */
8 7
 use Bantenprov\Siswa\Models\Bantenprov\Siswa\Siswa;
9
-use Bantenprov\Pendaftaran\Models\Bantenprov\Pendaftaran\Pendaftaran;
10 8
 use App\User;
11 9
 /* Etc */
12 10
 use Validator;
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.