Completed
Push — master ( 8429e8...16e02c )
by Ricardo
02:07
created
src/Http/Controllers/Admin/NotificationController.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * Store a newly created resource in storage.
52 52
      *
53
-     * @param  \Illuminate\Http\NotificationCreateRequest $request
54
-     * @return \Illuminate\Http\Response
53
+     * @param  NotificationCreateRequest $request
54
+     * @return \Illuminate\Http\RedirectResponse
55 55
      */
56 56
     public function store(NotificationCreateRequest $request)
57 57
     {
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
     /**
82 82
      * Update the specified resource in storage.
83 83
      *
84
-     * @param  \Illuminate\Http\NotificationUpdateRequest $request
84
+     * @param  NotificationUpdateRequest $request
85 85
      * @param  int                                        $id
86
-     * @return \Illuminate\Http\Response
86
+     * @return \Illuminate\Http\RedirectResponse
87 87
      */
88 88
     public function update(NotificationUpdateRequest $request, $id)
89 89
     {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * Remove the specified resource from storage.
101 101
      *
102 102
      * @param  int $id
103
-     * @return \Illuminate\Http\Response
103
+     * @return \Illuminate\Http\RedirectResponse
104 104
      */
105 105
     public function destroy($id)
106 106
     {
Please login to merge, or discard this patch.
src/Notifications/GeneralNotification.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
     /**
18 18
      * Create a notification instance.
19 19
      *
20
-     * @param  string $token
21 20
      * @return void
22 21
      */
23 22
     public function __construct($info)
Please login to merge, or discard this patch.