Passed
Push — master ( 42571c...f8295f )
by stéphane
09:20
created
sources/types/YamlObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
             return $this->__yaml__object__api->_anchors[$name];
78 78
         }
79 79
         throw new \UnexpectedValueException(sprintf(self::UNKNOWN_REFERENCE,
80
-                                                    $name, implode(',',array_keys($this->__yaml__object__api->_anchors)))
80
+                                                    $name, implode(',', array_keys($this->__yaml__object__api->_anchors)))
81 81
                                                 );
82 82
     }
83 83
 
Please login to merge, or discard this patch.
sources/nodes/Anchor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
             try {
19 19
                 return $yamlObject->getReference($name);
20 20
             } catch (\Throwable $e) {
21
-                throw new \ParseError("Unknown anchor : '$name' this:".$this->anchor,1,$e);
21
+                throw new \ParseError("Unknown anchor : '$name' this:".$this->anchor, 1, $e);
22 22
             }
23 23
         } else {
24 24
             $built = is_null($this->value) ? null : $this->value->build($parent);
Please login to merge, or discard this patch.