Completed
Push — master ( d41a46...98401c )
by Marcel
11s
created
src/Notifications/Console/NotificationTableCommand.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Notifications\Console;
4 4
 
5
-use ReflectionClass;
6
-use InvalidArgumentException;
7 5
 use Illuminate\Console\Command;
8 6
 use Illuminate\Filesystem\Filesystem;
7
+use InvalidArgumentException;
8
+use ReflectionClass;
9 9
 
10 10
 class NotificationTableCommand extends Command
11 11
 {
Please login to merge, or discard this patch.
src/Notifications/NotificationServiceProvider.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Illuminate\Notifications;
4 4
 
5
+use Illuminate\Bus\Dispatcher as Bus;
6
+use Illuminate\Contracts\Notifications\Dispatcher as DispatcherContract;
7
+use Illuminate\Contracts\Notifications\Factory as FactoryContract;
5 8
 use Illuminate\Notifications\Console\NotificationMakeCommand;
6 9
 use Illuminate\Notifications\Console\NotificationTableCommand;
7 10
 use Illuminate\Support\ServiceProvider;
8
-use Illuminate\Contracts\Notifications\Factory as FactoryContract;
9
-use Illuminate\Contracts\Notifications\Dispatcher as DispatcherContract;
10
-use Illuminate\Bus\Dispatcher as Bus;
11 11
 
12 12
 class NotificationServiceProvider extends ServiceProvider
13 13
 {
Please login to merge, or discard this patch.