Completed
Push — master ( bbc98f...1d64bf )
by
unknown
03:50
created
src/Http/Controllers/NilaiController.php 2 patches
Doc Comments   +6 added lines, -11 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * Show the form for creating a new resource.
75 75
      *
76
-     * @return \Illuminate\Http\Response
76
+     * @return \Illuminate\Http\JsonResponse
77 77
      */
78 78
     public function create()
79 79
     {        
@@ -88,8 +88,7 @@  discard block
 block discarded – undo
88 88
     /**
89 89
      * Display the specified resource.
90 90
      *
91
-     * @param  \App\Nilai  $nilai
92
-     * @return \Illuminate\Http\Response
91
+     * @return \Illuminate\Http\JsonResponse
93 92
      */
94 93
     public function store(Request $request)
95 94
     {
@@ -131,8 +130,7 @@  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
-     * @return \Illuminate\Http\Response
133
+     * @return \Illuminate\Http\JsonResponse
136 134
      */
137 135
     public function show($id)
138 136
     {
@@ -147,8 +145,7 @@  discard block
 block discarded – undo
147 145
     /**
148 146
      * Show the form for editing the specified resource.
149 147
      *
150
-     * @param  \App\Nilai  $nilai
151
-     * @return \Illuminate\Http\Response
148
+     * @return \Illuminate\Http\JsonResponse
152 149
      */
153 150
     public function edit($id)
154 151
     {
@@ -165,8 +162,7 @@  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\Nilai  $nilai
169
-     * @return \Illuminate\Http\Response
165
+     * @return \Illuminate\Http\JsonResponse
170 166
      */
171 167
     public function update(Request $request, $id)
172 168
     {
@@ -217,8 +213,7 @@  discard block
 block discarded – undo
217 213
     /**
218 214
      * Remove the specified resource from storage.
219 215
      *
220
-     * @param  \App\Nilai  $nilai
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   -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\Nilai\Facades\NilaiFacade;
9 8
 
10 9
 /* Models */
11 10
 use Bantenprov\Nilai\Models\Bantenprov\Nilai\Nilai;
Please login to merge, or discard this patch.
src/NilaiServiceProvider.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.