Completed
Push — master ( 1d9364...eda1fa )
by Marcel
02:49
created
src/Notifications/Channels/MailChannel.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Notifications;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Illuminate\Contracts\Notifications\Dispatcher;
6
+use Illuminate\Support\Str;
7 7
 
8 8
 trait RoutesNotifications
9 9
 {
Please login to merge, or discard this patch.
src/Notifications/NotificationServiceProvider.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Notifications;
4 4
 
5
+use Illuminate\Contracts\Notifications\Dispatcher as DispatcherContract;
6
+use Illuminate\Contracts\Notifications\Factory as FactoryContract;
5 7
 use Illuminate\Notifications\Console\NotificationMakeCommand;
6 8
 use Illuminate\Notifications\Console\NotificationTableCommand;
7 9
 use Illuminate\Support\ServiceProvider;
8
-use Illuminate\Contracts\Notifications\Factory as FactoryContract;
9
-use Illuminate\Contracts\Notifications\Dispatcher as DispatcherContract;
10 10
 
11 11
 class NotificationServiceProvider extends ServiceProvider
12 12
 {
Please login to merge, or discard this patch.