Completed
Push — master ( 179fe0...7ad467 )
by Seong
10:20
created
src/Events/NewReply.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
     /**
25 25
      * Create a new event instance.
26 26
      * ClientAction constructor.
27
-     * @param Client $client
28 27
      * @param $action
28
+     * @param \Illuminate\Database\Eloquent\Model $reply
29 29
      */
30 30
     public function __construct($reply)
31 31
     {
Please login to merge, or discard this patch.
src/Events/NewThread.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
     /**
25 25
      * Create a new event instance.
26 26
      * ClientAction constructor.
27
-     * @param Client $client
28 27
      * @param $action
29 28
      */
30 29
     public function __construct($thread)
Please login to merge, or discard this patch.
src/Http/Controllers/RepliesController.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,8 +43,6 @@  discard block
 block discarded – undo
43 43
     /**
44 44
      * Update the specified resource in storage.
45 45
      *
46
-     * @param  \Illuminate\Http\Request  $request
47
-     * @param  \App\Thread  $thread
48 46
      * @return \Illuminate\Http\Response
49 47
      */
50 48
     public function update(Reply $reply)
@@ -59,8 +57,7 @@  discard block
 block discarded – undo
59 57
     /**
60 58
      * Remove the specified resource from storage.
61 59
      *
62
-     * @param  \App\Thread  $thread
63
-     * @return \Illuminate\Http\Response
60
+     * @return \Illuminate\Http\RedirectResponse
64 61
      */
65 62
     public function destroy(Reply $reply)
66 63
     {
Please login to merge, or discard this patch.
src/Http/Controllers/ThreadsController.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * Store a newly created resource in storage.
72 72
      *
73 73
      * @param  \Illuminate\Http\Request  $request
74
-     * @return \Illuminate\Http\Response
74
+     * @return \Illuminate\Http\RedirectResponse
75 75
      */
76 76
     public function store(Request $request)
77 77
     {
@@ -132,7 +132,6 @@  discard block
 block discarded – undo
132 132
     /**
133 133
      * Update the specified resource in storage.
134 134
      *
135
-     * @param  \Illuminate\Http\Request  $request
136 135
      * @param  \App\Thread  $thread
137 136
      * @return \Illuminate\Http\Response
138 137
      */
@@ -151,7 +150,7 @@  discard block
 block discarded – undo
151 150
      * Remove the specified resource from storage.
152 151
      *
153 152
      * @param  \App\Thread  $thread
154
-     * @return \Illuminate\Http\Response
153
+     * @return \Illuminate\Http\RedirectResponse
155 154
      */
156 155
     public function destroy($channelId, Thread $thread)
157 156
     {
Please login to merge, or discard this patch.
src/Notifications/NewReplyNotification.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * Create a new notification instance.
23 23
      *
24
+     * @param string $msg
24 25
      * @return void
25 26
      */
26 27
     public function __construct($reply, $msg=null)
@@ -33,7 +34,7 @@  discard block
 block discarded – undo
33 34
      * Get the notification's delivery channels.
34 35
      *
35 36
      * @param  mixed  $notifiable
36
-     * @return array
37
+     * @return string[]
37 38
      */
38 39
     public function via($notifiable)
39 40
     {
Please login to merge, or discard this patch.
src/Notifications/NewThreadNotification.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * Create a new notification instance.
23 23
      *
24
+     * @param string $msg
24 25
      * @return void
25 26
      */
26 27
     public function __construct($thread, $msg=null)
@@ -33,7 +34,7 @@  discard block
 block discarded – undo
33 34
      * Get the notification's delivery channels.
34 35
      *
35 36
      * @param  mixed  $notifiable
36
-     * @return array
37
+     * @return string[]
37 38
      */
38 39
     public function via($notifiable)
39 40
     {
Please login to merge, or discard this patch.