@@ -2,12 +2,12 @@ |
||
2 | 2 | |
3 | 3 | namespace Spatie\MediaLibrary; |
4 | 4 | |
5 | +use Illuminate\Foundation\Application as LaravelApplication; |
|
5 | 6 | use Illuminate\Support\ServiceProvider; |
6 | 7 | use Laravel\Lumen\Application as LumenApplication; |
7 | -use Illuminate\Foundation\Application as LaravelApplication; |
|
8 | +use Spatie\MediaLibrary\Commands\CheckExistenceCommand; |
|
8 | 9 | use Spatie\MediaLibrary\Commands\ClearCommand; |
9 | 10 | use Spatie\MediaLibrary\Commands\RegenerateCommand; |
10 | -use Spatie\MediaLibrary\Commands\CheckExistenceCommand; |
|
11 | 11 | |
12 | 12 | class MediaLibraryServiceProvider extends ServiceProvider |
13 | 13 | { |
@@ -2,10 +2,10 @@ |
||
2 | 2 | |
3 | 3 | namespace Spatie\MediaLibrary\Services; |
4 | 4 | |
5 | -use Traversable; |
|
5 | +use Illuminate\Database\Eloquent\Collection as DbCollection; |
|
6 | 6 | use Illuminate\Support\Collection; |
7 | 7 | use Spatie\MediaLibrary\MediaRepository; |
8 | -use Illuminate\Database\Eloquent\Collection as DbCollection; |
|
8 | +use Traversable; |
|
9 | 9 | |
10 | 10 | class CheckExistence |
11 | 11 | { |