Completed
Push — master ( 683fbb...9a0293 )
by Chauncey
01:42
created
src/Charcoal/Image/Imagemagick/Effect/ImagemagickCropEffect.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
 
28 28
         $geometry = $this->geometry();
29 29
         if ($geometry) {
30
-            $params = [ $option.' "'.$geometry.'"' ];
30
+            $params = [$option.' "'.$geometry.'"'];
31 31
         } else {
32
-            $params = [ '-gravity "'.$this->gravity().'"' ];
32
+            $params = ['-gravity "'.$this->gravity().'"'];
33 33
 
34 34
             $size = $width.'x'.$height.($x >= 0 ? '+' : '').$x.($y >= 0 ? '+' : '').$y;
35 35
             $params[] = $option.' '.$size;
Please login to merge, or discard this patch.
src/Charcoal/Image/Imagemagick/Effect/ImagemagickResizeEffect.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
         $size = $this->size();
32 32
         if ($size) {
33
-            $params = [ $option.' "'.$size.'"' ];
33
+            $params = [$option.' "'.$size.'"'];
34 34
         } else {
35 35
             if ($width === 0 && $height === 0) {
36 36
                 return;
Please login to merge, or discard this patch.