Completed
Push — master ( 676136...b5d1cf )
by Mathieu
02:39
created
src/Charcoal/Image/Effect/AbstractBlurEffect.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@
 block discarded – undo
48 48
                 'Radius must be a float (greater than 0)'
49 49
             );
50 50
         }
51
-         $this->radius = (float)$radius;
52
-         return $this;
51
+            $this->radius = (float)$radius;
52
+            return $this;
53 53
     }
54 54
 
55 55
     /**
Please login to merge, or discard this patch.
src/Charcoal/Image/Effect/AbstractSharpenEffect.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
                 'Radius must be a float (greater than 0)'
58 58
             );
59 59
         }
60
-         $this->radius = (float)$radius;
61
-         return $this;
60
+            $this->radius = (float)$radius;
61
+            return $this;
62 62
     }
63 63
 
64 64
     /**
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
                 'Threshold must be a float (greater than 0)'
106 106
             );
107 107
         }
108
-         $this->amount = (float)$amount;
109
-         return $this;
108
+            $this->amount = (float)$amount;
109
+            return $this;
110 110
     }
111 111
 
112 112
     /**
@@ -129,8 +129,8 @@  discard block
 block discarded – undo
129 129
                 'Threshold must be a float (greater than 0)'
130 130
             );
131 131
         }
132
-         $this->threshold = (float)$threshold;
133
-         return $this;
132
+            $this->threshold = (float)$threshold;
133
+            return $this;
134 134
     }
135 135
 
136 136
     /**
Please login to merge, or discard this patch.
src/Charcoal/Image/Effect/AbstractThresholdEffect.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
                 'Threshold must be a float between 0 and 1.'
30 30
             );
31 31
         }
32
-         $this->threshold = (float)$threshold;
33
-         return $this;
32
+            $this->threshold = (float)$threshold;
33
+            return $this;
34 34
     }
35 35
 
36 36
     /**
Please login to merge, or discard this patch.
src/Charcoal/Image/Imagick/Effect/ImagickRevertEffect.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
  */
10 10
 class ImagickRevertEffect extends AbstractRevertEffect
11 11
 {
12
-     /**
13
-      * @param array $data The effect data, if available.
14
-      * @return ImagickRevertEffect Chainable
15
-      */
12
+        /**
13
+         * @param array $data The effect data, if available.
14
+         * @return ImagickRevertEffect Chainable
15
+         */
16 16
     public function process(array $data = null)
17 17
     {
18 18
         if ($data !== null) {
Please login to merge, or discard this patch.