@@ -2,10 +2,10 @@ |
||
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 | { |
@@ -2,12 +2,12 @@ |
||
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 | { |