Completed
Push — user-management ( 98a761...785c87 )
by Tony
03:15
created
app/Http/Controllers/UserController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Update a notifications status.
46 46
      *
47
-     * @return \Illuminate\Http\Response
47
+     * @return \Illuminate\Http\JsonResponse
48 48
      */
49 49
     public function update($id, $action)
50 50
     {
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * Create a new notification
57 57
      *
58
-     * @return \Illuminate\Http\Response
58
+     * @return \Illuminate\Http\JsonResponse
59 59
      */
60 60
     public function create(Request $request)
61 61
     {
Please login to merge, or discard this patch.
app/Http/Controllers/UserDeviceController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     /**
42 42
      * @param AdminOnlyRequest $request
43 43
      * @param $user_id
44
-     * @return mixed
44
+     * @return \Illuminate\Http\RedirectResponse
45 45
      */
46 46
     public function store(AdminOnlyRequest $request, $user_id)
47 47
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * @param AdminOnlyRequest $request
65 65
      * @param $user_id
66 66
      * @param $device_id
67
-     * @return mixed
67
+     * @return \Illuminate\Http\RedirectResponse
68 68
      */
69 69
     public function destroy(AdminOnlyRequest $request, $user_id, $device_id)
70 70
     {
Please login to merge, or discard this patch.
app/Http/Controllers/UserPortController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * @param AdminOnlyRequest $request
47 47
      * @param $user_id
48 48
      * @param $port_id
49
-     * @return mixed
49
+     * @return \Illuminate\Http\RedirectResponse
50 50
      */
51 51
     public function store(AdminOnlyRequest $request, $user_id)
52 52
     {
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * @param AdminOnlyRequest $request
70 70
      * @param $user_id
71 71
      * @param $port_id
72
-     * @return mixed
72
+     * @return \Illuminate\Http\RedirectResponse
73 73
      */
74 74
     public function destroy(AdminOnlyRequest $request, $user_id, $port_id)
75 75
     {
Please login to merge, or discard this patch.