Completed
Branch master (758f0b)
by stéphane
05:28
created
sources/nodes/abstract/Literals.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     {
35 35
         if (is_null($this->value)) $this->value = new NodeList();
36 36
         $candidate = $child;
37
-        if (!$child->isOneOf( ['Scalar', 'Blank', 'Comment', 'Quoted'])) {
37
+        if (!$child->isOneOf(['Scalar', 'Blank', 'Comment', 'Quoted'])) {
38 38
             $candidate = new Scalar((string) $child->raw, $child->line);
39 39
         }
40 40
         return parent::add($candidate);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * @return     string  The child value.
95 95
      * @todo       double check behaviour for KEY and ITEM
96 96
      */
97
-    protected function getChildValue(object $child, $refIndent=0):string
97
+    protected function getChildValue(object $child, $refIndent = 0):string
98 98
     {
99 99
         $value = $child->value;
100 100
         $start = '';
Please login to merge, or discard this patch.
sources/nodes/abstract/NodeGeneric.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function getParent(int $indent = null):NodeGeneric
73 73
     {
74
-        if (!is_int($indent)){
74
+        if (!is_int($indent)) {
75 75
             if ($this->_parent instanceof NodeGeneric) {
76 76
                 return $this->_parent;
77 77
             } else {
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
         if ($this->tag)        $props['tag']        = "($this->tag)";
246 246
         if ($this->value)      $props['value']      = $this->value;
247 247
         // $props['value'] = $this->value;
248
-        $props['raw']   = $this->raw;
248
+        $props['raw'] = $this->raw;
249 249
         if (!$this->_parent)  $props['parent'] = 'NO PARENT!!!';
250 250
         return $props;
251 251
     }
Please login to merge, or discard this patch.
sources/nodes/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         if ($value instanceof Key && $child instanceof Key) {
32 32
             if ($value->indent === $child->indent) {
33 33
                 return parent::add($child);
34
-            } elseif ($value->isAwaitingChild($child)){
34
+            } elseif ($value->isAwaitingChild($child)) {
35 35
                 return $value->add($child);
36 36
             } else {
37 37
                 // throw new \ParseError('key ('.$value->identifier.')@'.$value->line.' has already a value', 1);
Please login to merge, or discard this patch.
sources/nodes/Key.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 
62 62
     public function add(NodeGeneric $child):NodeGeneric
63 63
     {
64
-        if ($this->value instanceof NodeGeneric && $this->value->isOneOf(['Literal','LiteralFolded', 'Anchor'])) {
64
+        if ($this->value instanceof NodeGeneric && $this->value->isOneOf(['Literal', 'LiteralFolded', 'Anchor'])) {
65 65
             return $this->value->add($child);
66 66
         } else {
67 67
             return parent::add($child);
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         if ($current instanceof Comment) {
97 97
             return true;
98 98
         }
99
-        if($current instanceof Scalar) {
99
+        if ($current instanceof Scalar) {
100 100
             return $node->isOneOf(['Scalar', 'Blank']);
101 101
         }
102 102
         if ($current instanceof Item) {
Please login to merge, or discard this patch.
sources/nodes/Blank.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 {
13 13
     public function add(NodeGeneric $child):NodeGeneric
14 14
     {
15
-        if($this->_parent instanceof NodeGeneric) {
15
+        if ($this->_parent instanceof NodeGeneric) {
16 16
             return $this->_parent->add($child);
17 17
         } else {
18 18
             throw new \ParseError(__METHOD__." no parent to add to", 1);
Please login to merge, or discard this patch.
sources/nodes/LiteralFolded.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,10 +31,10 @@
 block discarded – undo
31 31
             $result = $this->getChildValue($first, $indent);
32 32
             foreach ($list as $child) {
33 33
                 $separator = ($result && $result[-1] === "\n") ? '' : $refSeparator;
34
-                if($child->indent > $indent || $child instanceof Blank) {
34
+                if ($child->indent > $indent || $child instanceof Blank) {
35 35
                     $separator = "\n";
36 36
                 }
37
-                $result .= $separator .$this->getChildValue($child, $indent);
37
+                $result .= $separator.$this->getChildValue($child, $indent);
38 38
             }
39 39
         }
40 40
         return $result;
Please login to merge, or discard this patch.
sources/tag/TagFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     public static function transform(string $identifier, $value)
79 79
     {
80 80
         if (self::isKnown($identifier)) {
81
-            if (!($value instanceof NodeGeneric) && !($value instanceof NodeList) ) {
81
+            if (!($value instanceof NodeGeneric) && !($value instanceof NodeList)) {
82 82
                 throw new \Exception(sprintf(self::WRONG_VALUE, $identifier, gettype($value)));
83 83
             }
84 84
             // return self::$tagsNamespaces[$identifier]($value);
Please login to merge, or discard this patch.
sources/tag/LocalNamespace.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
                 // $list[] = self::strHandler($child)->raw;
92 92
                 $list[] = self::strHandler($child);
93 93
             }
94
-            return new Nodes\Scalar(implode('',$list), 0);
94
+            return new Nodes\Scalar(implode('', $list), 0);
95 95
         }
96 96
     }
97 97
 
Please login to merge, or discard this patch.