Completed
Push — master ( 75be4d...81eaf3 )
by Andrew
01:49
created
src/Traits/DocumentMutatorTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Goose\Traits;
4 4
 
Please login to merge, or discard this patch.
src/Traits/NodeGravityTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Goose\Traits;
4 4
 
Please login to merge, or discard this patch.
src/Images/Image.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Goose\Images;
4 4
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      */
15 15
     public function __construct($options = []) {
16 16
         foreach ($options as $key => $value) {
17
-            $method = 'set' . ucfirst($key);
17
+            $method = 'set'.ucfirst($key);
18 18
 
19 19
             if (method_exists($this, $method)) {
20 20
                 call_user_func([$this, $method], $value);
Please login to merge, or discard this patch.
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Goose;
4 4
 
Please login to merge, or discard this patch.