Completed
Pull Request — master (#116)
by
unknown
02:15
created
src/FileAdder/FileAdder.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 use Illuminate\Contracts\Cache\Repository;
6 6
 use Spatie\MediaLibrary\Exceptions\FileCannotBeImported;
7 7
 use Spatie\MediaLibrary\Exceptions\FileDoesNotExist;
8
-use Spatie\MediaLibrary\Exceptions\FilesystemDoesNotExist;
9 8
 use Spatie\MediaLibrary\Exceptions\FileTooBig;
9
+use Spatie\MediaLibrary\Exceptions\FilesystemDoesNotExist;
10 10
 use Spatie\MediaLibrary\Filesystem;
11 11
 use Spatie\MediaLibrary\Media;
12 12
 use Symfony\Component\HttpFoundation\File\File;
Please login to merge, or discard this patch.
src/Media.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -128,6 +128,7 @@
 block discarded – undo
128 128
     /**
129 129
      * Determine if the media item has a custom property with the given name.
130 130
      *
131
+     * @param string $propertyName
131 132
      * @return bool
132 133
      */
133 134
     public function hasCustomProperty($propertyName)
Please login to merge, or discard this patch.
src/MediaRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\MediaLibrary;
4 4
 
5
-use Spatie\MediaLibrary\HasMedia\Interfaces\HasMedia;
6 5
 use Illuminate\Support\Collection;
6
+use Spatie\MediaLibrary\HasMedia\Interfaces\HasMedia;
7 7
 
8 8
 class MediaRepository
9 9
 {
Please login to merge, or discard this patch.