Completed
Pull Request — 2.0 (#35)
by
unknown
09:09
created
src/LaravelPhotoGalleryServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     /**
65 65
      * Get the services provided by the provider.
66 66
      *
67
-     * @return array
67
+     * @return string[]
68 68
      */
69 69
     public function provides()
70 70
     {
Please login to merge, or discard this patch.
src/Repositories/EloquentPhotoRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php namespace JeroenG\LaravelPhotoGallery\Repositories;
2 2
 
3
-use Illuminate\Http\Request;
4 3
 use Illuminate\Contracts\Filesystem\Factory as Filesystem;
4
+use Illuminate\Http\Request;
5 5
 use JeroenG\LaravelPhotoGallery\Models\Photo;
6 6
 
7 7
 class EloquentPhotoRepository implements PhotoRepository {
Please login to merge, or discard this patch.
src/Adapters/Eloquent/EloquentAlbumAdapter.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,10 @@
 block discarded – undo
3 3
 namespace JeroenG\LaravelPhotoGallery\Adapters\Eloquent;
4 4
 
5 5
 use Illuminate\Support\Collection;
6
-use JeroenG\LaravelPhotoGallery\Models\Album;
7
-use JeroenG\LaravelPhotoGallery\Entities as Entity;
8 6
 use JeroenG\LaravelPhotoGallery\Contracts\AlbumAdapter;
9 7
 use JeroenG\LaravelPhotoGallery\Contracts\PhotoAdapter;
8
+use JeroenG\LaravelPhotoGallery\Entities as Entity;
9
+use JeroenG\LaravelPhotoGallery\Models\Album;
10 10
 
11 11
 class EloquentAlbumAdapter implements AlbumAdapter
12 12
 {
Please login to merge, or discard this patch.