Completed
Branch master (758f0b)
by stéphane
05:28
created
examples/load_modify_save.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Dallgoot\Yaml;
3 3
 
4
-require_once __DIR__ . '/../../vendor/autoload.php';
4
+require_once __DIR__.'/../../vendor/autoload.php';
5 5
 
6 6
 use Dallgoot;
7 7
 
8
-$fileName = __DIR__ . '/../dummy.yml';
8
+$fileName = __DIR__.'/../dummy.yml';
9 9
 
10 10
 $yamlObject = Yaml::parseFile($fileName, $options = null, $debug = null);
11 11
 
Please login to merge, or discard this patch.
examples/write.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 define('PROJECT_ROOT', __DIR__."/../");
3
-require_once PROJECT_ROOT . 'vendor/autoload.php';
3
+require_once PROJECT_ROOT.'vendor/autoload.php';
4 4
 
5 5
 use Dallgoot\Yaml;
6 6
 use Dallgoot\Yaml\{Loader, Dumper};
@@ -12,9 +12,9 @@  discard block
 block discarded – undo
12 12
 // $yaml = (new Loader('./dummy.yml', null, 0))->parse();
13 13
 // var_dump($yaml);
14 14
 $testName = 'yamlObject_properties';
15
-$text = Yaml::dump((include PROJECT_ROOT . "tests/cases/dumping/$testName.php"), 0);
15
+$text = Yaml::dump((include PROJECT_ROOT."tests/cases/dumping/$testName.php"), 0);
16 16
 
17
-$nameResultPair = get_object_vars(Yaml::parseFile(PROJECT_ROOT . '/tests/definitions/dumping_tests.yml'));
17
+$nameResultPair = get_object_vars(Yaml::parseFile(PROJECT_ROOT.'/tests/definitions/dumping_tests.yml'));
18 18
 
19 19
 // var_dump($nameResultPair);
20 20
 
Please login to merge, or discard this patch.
sources/Loader.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@  discard block
 block discarded – undo
20 20
     //public
21 21
     /* @var null|string */
22 22
     public static $error;
23
-    public const IGNORE_DIRECTIVES     = 1;//DONT include_directive
24
-    public const IGNORE_COMMENTS       = 2;//DONT include_comments
25
-    public const NO_PARSING_EXCEPTIONS = 4;//DONT throw Exception on parsing errors
26
-    public const NO_OBJECT_FOR_DATE    = 8;//DONT import date strings as dateTime Object
23
+    public const IGNORE_DIRECTIVES     = 1; //DONT include_directive
24
+    public const IGNORE_COMMENTS       = 2; //DONT include_comments
25
+    public const NO_PARSING_EXCEPTIONS = 4; //DONT throw Exception on parsing errors
26
+    public const NO_OBJECT_FOR_DATE    = 8; //DONT import date strings as dateTime Object
27 27
 
28 28
     //private
29 29
     /* @var null|array */
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                 $previous = $target->add($node);
145 145
             }
146 146
             $this->_attachBlankLines($previous);
147
-            if ($this->_debug === 1){
147
+            if ($this->_debug === 1) {
148 148
                 return null;
149 149
             }
150 150
             return Builder::buildContent($root, $this->_debug);
@@ -183,8 +183,8 @@  discard block
 block discarded – undo
183 183
     {
184 184
         $deepest = $previous->getDeepestNode();
185 185
         if ($deepest instanceof Nodes\Partial) {
186
-            return $deepest->specialProcess($current,  $this->_blankBuffer);
187
-        } elseif(!($current instanceof Nodes\Partial)) {
186
+            return $deepest->specialProcess($current, $this->_blankBuffer);
187
+        } elseif (!($current instanceof Nodes\Partial)) {
188 188
             return $current->specialProcess($previous, $this->_blankBuffer);
189 189
         }
190 190
         return false;
Please login to merge, or discard this patch.
sources/NodeFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
         elseif ((bool) preg_match(Regex::KEY, $trimmed, $matches)) return new Nodes\Key($nodeString, $line, $matches);
28 28
         else {
29 29
             $first = $trimmed[0];
30
-            $stringGroups = ["-" ,'>|' ,'"\'',"#%" ,"{[" ,":?" ,'*&!'];
31
-            $methodGroups = ['Hyphen','Literal','Quoted','Special','Compact','SetElement','NodeAction'];
30
+            $stringGroups = ["-", '>|', '"\'', "#%", "{[", ":?", '*&!'];
31
+            $methodGroups = ['Hyphen', 'Literal', 'Quoted', 'Special', 'Compact', 'SetElement', 'NodeAction'];
32 32
             foreach ($stringGroups as $groupIndex => $stringRef) {
33 33
                 if (is_int(strpos($stringRef, $first))) {
34 34
                     $methodName = 'on'.$methodGroups[$groupIndex];
@@ -134,9 +134,9 @@  discard block
 block discarded – undo
134 134
         if (!((bool) preg_match(Regex::NODE_ACTIONS, trim($nodeString), $matches))) {
135 135
             return new Nodes\Scalar($nodeString, $line);
136 136
         }
137
-        $action = trim($matches['action']);//var_dump($matches);
137
+        $action = trim($matches['action']); //var_dump($matches);
138 138
         switch ($action[0]) {
139
-            case '!': return new Nodes\Tag   ($nodeString, $line);
139
+            case '!': return new Nodes\Tag($nodeString, $line);
140 140
             default :
141 141
                 return new Nodes\Anchor($nodeString, $line);
142 142
             // case '&': return new NodeAnchor($nodeString, $line);
Please login to merge, or discard this patch.
sources/DumperHandlers.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@  discard block
 block discarded – undo
32 32
 
33 33
     public function dump($dataType, int $indent):string
34 34
     {
35
-        if(is_null($dataType)) {
35
+        if (is_null($dataType)) {
36 36
             return '';
37
-        } elseif(is_resource($dataType)) {
37
+        } elseif (is_resource($dataType)) {
38 38
             return get_resource_type($dataType);
39 39
         } elseif (is_scalar($dataType)) {
40 40
             return $this->dumpScalar($dataType, $indent);
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     }
102 102
 
103 103
 
104
-    private function iteratorToString(iterable $iterator, string $mask, int $indent, bool $isCompact=false):string
104
+    private function iteratorToString(iterable $iterator, string $mask, int $indent, bool $isCompact = false):string
105 105
     {
106 106
         $pairs = [];
107 107
         foreach ($iterator as $key => $value) {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         if (is_array($subject) || $subject instanceof \ArrayIterator) {
134 134
             $max = count($subject);
135 135
             $objectAsArray = is_array($subject) ? $subject : $subject->getArrayCopy();
136
-            if(array_keys($objectAsArray) !== range(0, $max-1)) {
136
+            if (array_keys($objectAsArray) !== range(0, $max - 1)) {
137 137
                 $pairs = $objectAsArray;
138 138
             } else {
139 139
                 $valuesList = [];
Please login to merge, or discard this patch.
sources/NodeList.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
                 && !($child instanceof Directive)
65 65
                 && !($child instanceof Blank)
66 66
                 && !($child instanceof Docstart
67
-                && is_null($child->value)) ) return true;
67
+                && is_null($child->value))) return true;
68 68
         }
69 69
         return false;
70 70
     }
@@ -72,12 +72,12 @@  discard block
 block discarded – undo
72 72
     public function push($node)
73 73
     {
74 74
         $type = null;
75
-        if     ($node instanceof Item )    $type = self::SEQUENCE;
75
+        if ($node instanceof Item)    $type = self::SEQUENCE;
76 76
         elseif ($node instanceof Key)      $type = self::MAPPING;
77 77
         elseif ($node instanceof SetKey
78 78
              || $node instanceof SetValue) {
79 79
             $type = self::SET;
80
-        } elseif ($node instanceof Scalar ){
80
+        } elseif ($node instanceof Scalar) {
81 81
             $type = self::MULTILINE;
82 82
         }
83 83
         if (!is_null($type) && $this->checkTypeCoherence($type)) {
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
             $output = trim($first->raw);
140 140
             foreach ($list as $child) {
141 141
                 if ($child instanceof Scalar) {
142
-                    $separator = isset($output[-1])  && $output[-1] === "\n" ? '' : ' ';
142
+                    $separator = isset($output[-1]) && $output[-1] === "\n" ? '' : ' ';
143 143
                     $output .= $separator.trim($child->raw);
144 144
                 } elseif ($child instanceof Blank) {
145 145
                     $output .= "\n";
@@ -165,10 +165,10 @@  discard block
 block discarded – undo
165 165
             if ($child instanceof Comment) {
166 166
                 // $child->build();
167 167
             } else {
168
-                if($child->value instanceof Comment) {
168
+                if ($child->value instanceof Comment) {
169 169
                     // $child->value->build();
170 170
                     // $child->value = null;
171
-                } elseif($child->value instanceof NodeList) {
171
+                } elseif ($child->value instanceof NodeList) {
172 172
                     $child->value = $child->value->filterComment();
173 173
                 }
174 174
                 $out->push($child);
Please login to merge, or discard this patch.
sources/Dumper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         $dumpHandler = new DumperHandlers($options);
50 50
         if (is_scalar($dataType)) {
51 51
             // TODO: what to woth comments ???
52
-            return "--- ".$dumpHandler->dumpScalar($dataType, 0). self::LINEFEED ;
52
+            return "--- ".$dumpHandler->dumpScalar($dataType, 0).self::LINEFEED;
53 53
         }
54 54
         return $dumpHandler->dump($dataType, 0);
55 55
     }
Please login to merge, or discard this patch.
sources/nodes/DocStart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
             throw new \Exception(__METHOD__." expects a YamlObject as parent", 1);
39 39
         }
40 40
         if (!is_null($this->value)) {
41
-            if ($this->value instanceof Tag){
41
+            if ($this->value instanceof Tag) {
42 42
                 $parent->addTag($this->value->tag);
43 43
                 $this->value->build($parent);
44 44
             } else {
Please login to merge, or discard this patch.
sources/nodes/CompactSequence.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
     public function __construct(string $nodeString, int $line)
19 19
     {
20 20
         parent::__construct($nodeString, $line);
21
-        preg_match_all(Regex::SEQUENCE_VALUES, trim(substr(trim($nodeString), 1,-1)), $matches);
21
+        preg_match_all(Regex::SEQUENCE_VALUES, trim(substr(trim($nodeString), 1, -1)), $matches);
22 22
         foreach ($matches['item'] as $key => $item) {
23 23
             $i = new Item('', $line);
24 24
             $i->indent = null;
Please login to merge, or discard this patch.