@@ -91,7 +91,7 @@ |
||
91 | 91 | $memoryLimit = ini_get('memory_limit'); |
92 | 92 | ini_set('memory_limit', '512M'); |
93 | 93 | $img = ImageManager::make($this->source); |
94 | - $img->resize($this->size, null, function (\Intervention\Image\Constraint $constraint) { |
|
94 | + $img->resize($this->size, null, function(\Intervention\Image\Constraint $constraint) { |
|
95 | 95 | $constraint->aspectRatio(); |
96 | 96 | $constraint->upsize(); |
97 | 97 | }); |
@@ -149,7 +149,7 @@ |
||
149 | 149 | */ |
150 | 150 | public static function joinFile(array $strings): string |
151 | 151 | { |
152 | - array_walk($strings, function (&$value, &$key) { |
|
152 | + array_walk($strings, function(&$value, &$key) { |
|
153 | 153 | $value = str_replace(['\\', '/'], DIRECTORY_SEPARATOR, $value); |
154 | 154 | }); |
155 | 155 |