Passed
Push — master ( 6b8e06...02b784 )
by stéphane
04:35
created
yaml/Builder.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -162,11 +162,11 @@
 block discarded – undo
162 162
         }
163 163
         if ($type & Y::COMMENT) self::$_root->addComment($node->line, $node->value);
164 164
         $typesActions = [Y::DIRECTIVE => 'buildDirective',
165
-                         Y::ITEM      => 'buildItem',
166
-                         Y::KEY       => 'buildKey',
167
-                         Y::SET_KEY   => 'buildSetKey',
168
-                         Y::SET_VALUE => 'buildSetValue',
169
-                         Y::TAG       => 'buildTag',
165
+                            Y::ITEM      => 'buildItem',
166
+                            Y::KEY       => 'buildKey',
167
+                            Y::SET_KEY   => 'buildSetKey',
168
+                            Y::SET_VALUE => 'buildSetValue',
169
+                            Y::TAG       => 'buildTag',
170 170
         ];
171 171
         if (isset($typesActions[$type])) {
172 172
             return self::{$typesActions[$type]}($node, $parent);
Please login to merge, or discard this patch.