Passed
Branch dev (d5528f)
by Ailis
03:27
created
Category
src/Basic/ImmutableValue.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,8 +158,10 @@
 block discarded – undo
158 158
  * @method self withGreen(int $v)
159 159
  * @method self withBlue(int $v)
160 160
  */
161
-final class Color extends ImmutableValue {
162
-    public function __construct(int $red, int $green, int $blue) {
161
+final class Color extends ImmutableValue
162
+{
163
+    public function __construct(int $red, int $green, int $blue)
164
+    {
163 165
         $this->init('red', $red);
164 166
         $this->init('green', $green);
165 167
         $this->init('blue', $blue);
Please login to merge, or discard this patch.