Completed
Branch master (3340c0)
by Provinsi
08:43
created
src/GroupEgovernmentServiceProvider.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/GroupEgovernmentController.php 2 patches
Doc Comments   +6 added lines, -11 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     /**
66 66
      * Show the form for creating a new resource.
67 67
      *
68
-     * @return \Illuminate\Http\Response
68
+     * @return \Illuminate\Http\JsonResponse
69 69
      */
70 70
     public function create()
71 71
     {
@@ -80,8 +80,7 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * Display the specified resource.
82 82
      *
83
-     * @param  \App\GroupEgovernment  $group_egovernment
84
-     * @return \Illuminate\Http\Response
83
+     * @return \Illuminate\Http\JsonResponse
85 84
      */
86 85
     public function store(Request $request)
87 86
     {
@@ -120,8 +119,7 @@  discard block
 block discarded – undo
120 119
     /**
121 120
      * Store a newly created resource in storage.
122 121
      *
123
-     * @param  \Illuminate\Http\Request  $request
124
-     * @return \Illuminate\Http\Response
122
+     * @return \Illuminate\Http\JsonResponse
125 123
      */
126 124
     public function show($id)
127 125
     {
@@ -136,8 +134,7 @@  discard block
 block discarded – undo
136 134
     /**
137 135
      * Show the form for editing the specified resource.
138 136
      *
139
-     * @param  \App\GroupEgovernment  $group_egovernment
140
-     * @return \Illuminate\Http\Response
137
+     * @return \Illuminate\Http\JsonResponse
141 138
      */
142 139
     public function edit($id)
143 140
     {
@@ -153,8 +150,7 @@  discard block
 block discarded – undo
153 150
      * Update the specified resource in storage.
154 151
      *
155 152
      * @param  \Illuminate\Http\Request  $request
156
-     * @param  \App\GroupEgovernment  $group_egovernment
157
-     * @return \Illuminate\Http\Response
153
+     * @return \Illuminate\Http\JsonResponse
158 154
      */
159 155
     public function update(Request $request, $id)
160 156
     {
@@ -201,8 +197,7 @@  discard block
 block discarded – undo
201 197
     /**
202 198
      * Remove the specified resource from storage.
203 199
      *
204
-     * @param  \App\GroupEgovernment  $group_egovernment
205
-     * @return \Illuminate\Http\Response
200
+     * @return string
206 201
      */
207 202
     public function destroy($id)
208 203
     {
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\BudgetAbsorption\Facades\GroupEgovernmentFacade;
9 8
 
10 9
 /* Models */
11 10
 use Bantenprov\GroupEgovernment\Models\Bantenprov\GroupEgovernment\GroupEgovernment;
Please login to merge, or discard this patch.