@@ -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 | { |
@@ -3,11 +3,11 @@ |
||
| 3 | 3 | namespace Spatie\MediaLibrary\Services; |
| 4 | 4 | |
| 5 | 5 | use Exception; |
| 6 | -use Traversable; |
|
| 7 | -use Illuminate\Support\Collection; |
|
| 8 | -use Spatie\MediaLibrary\MediaRepository; |
|
| 9 | 6 | use Illuminate\Database\Eloquent\Collection as DbCollection; |
| 7 | +use Illuminate\Support\Collection; |
|
| 10 | 8 | use Spatie\MediaLibrary\Exceptions\InvalidCheckExistenceFilterType; |
| 9 | +use Spatie\MediaLibrary\MediaRepository; |
|
| 10 | +use Traversable; |
|
| 11 | 11 | |
| 12 | 12 | class CheckExistence |
| 13 | 13 | { |