Completed
Push — master ( e07f46...7ee80f )
by
unknown
01:29
created
src/Http/Controllers/MasterSktmController.php 2 patches
Doc Comments   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -94,7 +94,6 @@  discard block
 block discarded – undo
94 94
     /**
95 95
      * Display the specified resource.
96 96
      *
97
-     * @param  \App\Sktm  $sktm
98 97
      * @return \Illuminate\Http\Response
99 98
      */
100 99
     public function store(Request $request)
@@ -143,7 +142,6 @@  discard block
 block discarded – undo
143 142
     /**
144 143
      * Store a newly created resource in storage.
145 144
      *
146
-     * @param  \Illuminate\Http\Request  $request
147 145
      * @return \Illuminate\Http\Response
148 146
      */
149 147
     public function show($id)
@@ -160,7 +158,6 @@  discard block
 block discarded – undo
160 158
     /**
161 159
      * Show the form for editing the specified resource.
162 160
      *
163
-     * @param  \App\Sktm  $sktm
164 161
      * @return \Illuminate\Http\Response
165 162
      */
166 163
 
@@ -180,7 +177,6 @@  discard block
 block discarded – undo
180 177
      * Update the specified resource in storage.
181 178
      *
182 179
      * @param  \Illuminate\Http\Request  $request
183
-     * @param  \App\Sktm  $sktm
184 180
      * @return \Illuminate\Http\Response
185 181
      */
186 182
     public function update(Request $request, $id)
@@ -241,8 +237,7 @@  discard block
 block discarded – undo
241 237
     /**
242 238
      * Remove the specified resource from storage.
243 239
      *
244
-     * @param  \App\Sktm  $sktm
245
-     * @return \Illuminate\Http\Response
240
+     * @return string
246 241
      */
247 242
     public function destroy($id)
248 243
     {
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\Sktm\Facades\SktmFacade;
9 8
 
10 9
 /* Models */
11 10
 use Bantenprov\Sktm\Models\Bantenprov\Sktm\MasterSktm;
Please login to merge, or discard this patch.
src/Http/Controllers/SktmController.php 1 patch
Doc Comments   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -107,7 +107,6 @@  discard block
 block discarded – undo
107 107
     /**
108 108
      * Display the specified resource.
109 109
      *
110
-     * @param  \App\Sktm  $sktm
111 110
      * @return \Illuminate\Http\Response
112 111
      */
113 112
     public function store(Request $request)
@@ -153,7 +152,6 @@  discard block
 block discarded – undo
153 152
     /**
154 153
      * Store a newly created resource in storage.
155 154
      *
156
-     * @param  \Illuminate\Http\Request  $request
157 155
      * @return \Illuminate\Http\Response
158 156
      */
159 157
     public function show($id)
@@ -171,7 +169,6 @@  discard block
 block discarded – undo
171 169
     /**
172 170
      * Show the form for editing the specified resource.
173 171
      *
174
-     * @param  \App\Sktm  $sktm
175 172
      * @return \Illuminate\Http\Response
176 173
      */
177 174
 
@@ -194,7 +191,6 @@  discard block
 block discarded – undo
194 191
      * Update the specified resource in storage.
195 192
      *
196 193
      * @param  \Illuminate\Http\Request  $request
197
-     * @param  \App\Sktm  $sktm
198 194
      * @return \Illuminate\Http\Response
199 195
      */
200 196
     public function update(Request $request, $id)
@@ -251,8 +247,7 @@  discard block
 block discarded – undo
251 247
     /**
252 248
      * Remove the specified resource from storage.
253 249
      *
254
-     * @param  \App\Sktm  $sktm
255
-     * @return \Illuminate\Http\Response
250
+     * @return string
256 251
      */
257 252
     public function destroy($id)
258 253
     {
Please login to merge, or discard this patch.