Completed
Pull Request — master (#259)
by
unknown
02:39
created
src/MediaLibraryServiceProvider.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/Services/CheckExistence.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 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
 {
Please login to merge, or discard this patch.