Completed
Push — master ( c4fdcb...4f630f )
by
unknown
8s
created
src/Http/Controllers/SktmController.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\Sktm\Facades\SktmFacade;
9 8
 
10 9
 /* Models */
11 10
 use Bantenprov\Sktm\Models\Bantenprov\Sktm\Sktm;
Please login to merge, or discard this patch.
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.
src/SktmServiceProvider.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/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.