Completed
Push — master ( c952f4...b4ee2b )
by Seong
01:13
created
src/Events/NewReply.php 1 patch
Unused Use Statements   +2 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,12 +3,9 @@
 block discarded – undo
3 3
 namespace Seongbae\Discuss\Events;
4 4
 
5 5
 use Illuminate\Broadcasting\Channel;
6
-use Illuminate\Queue\SerializesModels;
7
-use Illuminate\Broadcasting\PrivateChannel;
8
-use Illuminate\Broadcasting\PresenceChannel;
9 6
 use Illuminate\Broadcasting\InteractsWithSockets;
10
-use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
11
-use Seongbae\Discuss\Models\Reply;
7
+use Illuminate\Broadcasting\PrivateChannel;
8
+use Illuminate\Queue\SerializesModels;
12 9
 
13 10
 class NewReply
14 11
 {
Please login to merge, or discard this patch.
src/Events/NewThread.php 1 patch
Unused Use Statements   +2 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,12 +3,9 @@
 block discarded – undo
3 3
 namespace Seongbae\Discuss\Events;
4 4
 
5 5
 use Illuminate\Broadcasting\Channel;
6
-use Illuminate\Queue\SerializesModels;
7
-use Illuminate\Broadcasting\PrivateChannel;
8
-use Illuminate\Broadcasting\PresenceChannel;
9 6
 use Illuminate\Broadcasting\InteractsWithSockets;
10
-use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
11
-use Seongbae\Discuss\Models\Reply;
7
+use Illuminate\Broadcasting\PrivateChannel;
8
+use Illuminate\Queue\SerializesModels;
12 9
 
13 10
 class NewThread
14 11
 {
Please login to merge, or discard this patch.
src/Http/Controllers/ThreadsController.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,12 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Seongbae\Discuss\Http\Controllers;
4 4
 
5
-use Seongbae\Discuss\Models\Thread;
6
-use Illuminate\Http\Request;
7
-use Seongbae\Discuss\Models\Channel;
8 5
 use App\Http\Controllers\Controller;
9 6
 use Auth;
10
-use Illuminate\Support\Facades\Log;
7
+use Illuminate\Http\Request;
8
+use Seongbae\Discuss\Models\Channel;
9
+use Seongbae\Discuss\Models\Thread;
11 10
 
12 11
 class ThreadsController extends Controller
13 12
 {
Please login to merge, or discard this patch.
src/Notifications/NewReplyNotification.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,12 +3,8 @@
 block discarded – undo
3 3
 namespace Seongbae\Discuss\Notifications;
4 4
 
5 5
 use Illuminate\Bus\Queueable;
6
-use Illuminate\Contracts\Queue\ShouldQueue;
7 6
 use Illuminate\Notifications\Messages\MailMessage;
8 7
 use Illuminate\Notifications\Notification;
9
-use Illuminate\Support\Facades\Log;
10
-use App\Mail\TeamMemberAdded;
11
-use Helper;
12 8
 
13 9
 class NewReplyNotification extends Notification
14 10
 {
Please login to merge, or discard this patch.
src/Notifications/NewThreadNotification.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,12 +3,8 @@
 block discarded – undo
3 3
 namespace Seongbae\Discuss\Notifications;
4 4
 
5 5
 use Illuminate\Bus\Queueable;
6
-use Illuminate\Contracts\Queue\ShouldQueue;
7 6
 use Illuminate\Notifications\Messages\MailMessage;
8 7
 use Illuminate\Notifications\Notification;
9
-use Illuminate\Support\Facades\Log;
10
-use App\Mail\TeamMemberAdded;
11
-use Helper;
12 8
 
13 9
 class NewThreadNotification extends Notification
14 10
 {
Please login to merge, or discard this patch.
src/Http/Controllers/RepliesController.php 1 patch
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,12 +3,11 @@
 block discarded – undo
3 3
 namespace Seongbae\Discuss\Http\Controllers;
4 4
 
5 5
 
6
+use App\Http\Controllers\Controller;
6 7
 use Illuminate\Http\Request;
7
-use Seongbae\Discuss\Models\Thread;
8
-use Seongbae\Discuss\Models\Channel;
9 8
 use Illuminate\Support\Facades\Auth;
10 9
 use Seongbae\Discuss\Models\Reply;
11
-use App\Http\Controllers\Controller;
10
+use Seongbae\Discuss\Models\Thread;
12 11
 
13 12
 class RepliesController extends Controller
14 13
 {
Please login to merge, or discard this patch.