Completed
Push — master ( 9fccf2...e212fc )
by Jan
01:53
created
app/Http/Controllers/Admin/AdminModuleController.php 1 patch
Doc Comments   +6 added lines, -8 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     /**
152 152
      * Runs after store
153 153
      *
154
-     * @param $request
154
+     * @param Request $request
155 155
      */
156 156
     protected function afterStore($request){
157 157
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
     /**
161 161
      * Runs after update
162 162
      *
163
-     * @param $request
163
+     * @param Request $request
164 164
      */
165 165
     protected function afterUpdate($request){
166 166
 
@@ -169,8 +169,6 @@  discard block
 block discarded – undo
169 169
     /**
170 170
      * Save transaction
171 171
      *
172
-     * @param int $typeId
173
-     * @param string $text
174 172
      * @param $userId
175 173
      * @param $amount
176 174
      */
@@ -260,7 +258,7 @@  discard block
 block discarded – undo
260 258
      * Change ar result if necessary
261 259
      *
262 260
      * @param $arResult
263
-     * @return mixed
261
+     * @return string|null
264 262
      */
265 263
     public function changeEditResultField($arResult){
266 264
         return $arResult;
@@ -348,7 +346,7 @@  discard block
 block discarded – undo
348 346
      * Store a newly created resource in storage.
349 347
      *
350 348
      * @param  Request  $request
351
-     * @return Response
349
+     * @return \Illuminate\Http\RedirectResponse
352 350
      */
353 351
     public function store(Request $request) {
354 352
 
@@ -498,7 +496,7 @@  discard block
 block discarded – undo
498 496
      *
499 497
      * @param  Request  $request
500 498
      * @param  int  $id
501
-     * @return Response
499
+     * @return \Illuminate\Http\RedirectResponse
502 500
      */
503 501
     public function update(Request $request, $id) {
504 502
 
@@ -640,7 +638,7 @@  discard block
 block discarded – undo
640 638
      * Remove the specified resource from storage.
641 639
      *
642 640
      * @param  int  $id
643
-     * @return Response
641
+     * @return \Illuminate\Http\RedirectResponse
644 642
      */
645 643
 
646 644
     public function destroy($id) {
Please login to merge, or discard this patch.