Completed
Push — master ( 58e266...391c2e )
by Ventaquil
02:08
created
src/Traits/AllowedPropertiesTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         }
37 37
 
38 38
 
39
-        return trigger_error('Call to undefined method '. static::class . "::{$name}()", E_USER_ERROR);
39
+        return trigger_error('Call to undefined method '.static::class."::{$name}()", E_USER_ERROR);
40 40
     }
41 41
 
42 42
     /**
Please login to merge, or discard this patch.
src/Graph/Connection/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * Builder constructor.
57 57
      * @param GraphBuilder|null $builder
58 58
      */
59
-    public function __construct(?GraphBuilder $builder = null)
59
+    public function __construct(? GraphBuilder $builder = null)
60 60
     {
61 61
         $this->builder = $builder;
62 62
     }
Please login to merge, or discard this patch.
src/Graph/Node.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      * @param float|null $y
56 56
      * @param float|null $z
57 57
      */
58
-    public function __construct(?float $x = null, ?float $y = null, ?float $z = null)
58
+    public function __construct(? float $x = null, ? float $y = null, ? float $z = null)
59 59
     {
60 60
         $this->id = $this::$increment++;
61 61
 
Please login to merge, or discard this patch.
src/Graph/Node/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      * Builder constructor.
57 57
      * @param GraphBuilder|null $builder
58 58
      */
59
-    public function __construct(?GraphBuilder $builder = null)
59
+    public function __construct(? GraphBuilder $builder = null)
60 60
     {
61 61
         $this->builder = $builder;
62 62
     }
Please login to merge, or discard this patch.