Completed
Push — analysis-e7NVwA ( 98d0a6 )
by Arnaud
05:46 queued 10s
created
src/Assets/Image.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
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
             });
Please login to merge, or discard this patch.
src/Util.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.