@@ -64,7 +64,7 @@ |
||
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 | { |
@@ -1,7 +1,7 @@ |
||
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 { |
@@ -3,10 +3,10 @@ |
||
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 | { |