Test Failed
Push — master ( 46b4fe...b81e8b )
by stéphane
02:30
created
src/Tag/TagFactory.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,6 @@
 block discarded – undo
62 62
 %TAG !! tag:example.com,2000:app/
63 63
 %TAG !e! tag:example.com,2000:app/
64 64
 !<tag:yaml.org,2002:str> foo :
65
-
66 65
      */
67 66
     /**
68 67
      * Add Handlers for legacy Yaml tags
Please login to merge, or discard this patch.
src/Nodes/Comment.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -12,17 +12,17 @@
 block discarded – undo
12 12
  */
13 13
 class Comment extends NodeGeneric
14 14
 {
15
-     public function specialProcess(NodeGeneric &$previous, array &$emptyLines): bool
16
-     {
17
-          $previous->getRoot()->add($this);
18
-          return true;
19
-     }
15
+        public function specialProcess(NodeGeneric &$previous, array &$emptyLines): bool
16
+        {
17
+            $previous->getRoot()->add($this);
18
+            return true;
19
+        }
20 20
 
21
-     public function build(&$parent = null)
22
-     {
23
-          $root = $this->getRoot();
24
-          $yamlObject = $root->getYamlObject();
25
-          $yamlObject->addComment($this->line, $this->raw);
26
-          return null;
27
-     }
21
+        public function build(&$parent = null)
22
+        {
23
+            $root = $this->getRoot();
24
+            $yamlObject = $root->getYamlObject();
25
+            $yamlObject->addComment($this->line, $this->raw);
26
+            return null;
27
+        }
28 28
 }
Please login to merge, or discard this patch.