@@ -31,7 +31,7 @@ |
||
31 | 31 | * Generate thumbnail URL. |
32 | 32 | * |
33 | 33 | * @param $image |
34 | - * @param $type |
|
34 | + * @param string $type |
|
35 | 35 | * |
36 | 36 | * @return string |
37 | 37 | */ |
@@ -160,7 +160,7 @@ |
||
160 | 160 | |
161 | 161 | // Resize image with aspect ratio |
162 | 162 | $image = InterventionImage::make($file); |
163 | - $image->resize($size['width'], $size['height'], function (Constraint $constraint) { |
|
163 | + $image->resize($size['width'], $size['height'], function(Constraint $constraint) { |
|
164 | 164 | $constraint->aspectRatio(); |
165 | 165 | })->resizeCanvas($size['width'], $size['height'], 'center', false, '#ffffff'); |
166 | 166 |