Completed
Pull Request — master (#15)
by Yaro
08:09 queued 01:44
created
src/Jarboe/Table/Fields/Image.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@
 block discarded – undo
69 69
         return $this;
70 70
     }
71 71
 
72
+    /**
73
+     * @param string $filename
74
+     */
72 75
     protected function storeFile($filepath, $filename, $width = null, $height = null, $x = null, $y = null, $rotate = null, $rotateBackgroundColor = null)
73 76
     {
74 77
         $image = InterventionImage::make($filepath);
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,14 +4,13 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Http\Request;
6 6
 use Illuminate\Http\UploadedFile;
7
-use Illuminate\Support\Arr;
7
+use Illuminate\Support\Facades\Storage as IlluminateStorage;
8 8
 use Illuminate\Support\Str;
9
+use Intervention\Image\ImageManagerStatic as InterventionImage;
9 10
 use Yaro\Jarboe\Table\Fields\Traits\Filename;
10 11
 use Yaro\Jarboe\Table\Fields\Traits\Nullable;
11 12
 use Yaro\Jarboe\Table\Fields\Traits\Placeholder;
12 13
 use Yaro\Jarboe\Table\Fields\Traits\Storage;
13
-use Illuminate\Support\Facades\Storage as IlluminateStorage;
14
-use Intervention\Image\ImageManagerStatic as InterventionImage;
15 14
 
16 15
 class Image extends AbstractField
17 16
 {
Please login to merge, or discard this patch.