Passed
Push — master ( affae1...bf1da0 )
by stéphane
10:14
created
source/Tag.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
             case '!omap': $value->type = Y::SEQUENCE;break;
58 58
             // assumed to be !str,!binary
59 59
             default: $parent = null;
60
-                     $value->type = Y::RAW;
60
+                        $value->type = Y::RAW;
61 61
         }
62 62
         $this->value = Builder::buildNodeList($value, $parent);
63 63
         return $this->value;
Please login to merge, or discard this patch.
source/Node2PHP.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         if ($n->type & (Y::REF_CALL|Y::SCALAR)) return self::getScalar((string) $n->value);
28 28
         if ($n->type & Y::JSON) return $n->value;
29 29
         $expected = [Y::QUOTED => trim((string) $n->value, "\"'"),
30
-                     Y::RAW    => strval((string) $n->value)];
30
+                        Y::RAW    => strval((string) $n->value)];
31 31
         return $expected[$n->type] ?? null;
32 32
     }
33 33
 
Please login to merge, or discard this patch.