Completed
Push — master ( 2773c2...08c605 )
by stéphane
02:18
created
yaml/Yaml.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
             'COMPACT_SEQUENCE',
18 18
             'PARTIAL',
19 19
             'LITT', //litteral
20
-            'LITT_FOLDED',//litteral
20
+            'LITT_FOLDED', //litteral
21 21
             'SCALAR',
22 22
             'TAG',
23 23
             'JSON',
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     define(__NAMESPACE__."\\$name", 2**$power);
35 35
 }
36 36
 
37
-const LITTERALS = Y\LITT | Y\LITT_FOLDED;
37
+const LITTERALS = Y\LITT|Y\LITT_FOLDED;
38 38
 // print_r(get_defined_constants(true)['user']);
39 39
 
40 40
 namespace Dallgoot;
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     public static function getName($typeInteger)
54 54
     {
55 55
         if (is_null(self::$TYPE_NAMES)) {
56
-            $f = function ($v) { return str_replace('Dallgoot\Yaml\\', '', $v);};
56
+            $f = function($v) { return str_replace('Dallgoot\Yaml\\', '', $v); };
57 57
             self::$TYPE_NAMES = array_map($f, array_flip(get_defined_constants(true)['user']));
58 58
         }
59 59
         return self::$TYPE_NAMES[$typeInteger];
Please login to merge, or discard this patch.
yaml/Dumper.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         if (is_null($dataType)) throw new \Exception(self::class.": No content to convert to Yaml", 1);
40 40
         self::$options = is_int($options) ? $options : self::OPTIONS;
41 41
         self::$result = new DLL;
42
-        self::$result->setIteratorMode(DLL::IT_MODE_FIFO | DLL::IT_MODE_DELETE);
42
+        self::$result->setIteratorMode(DLL::IT_MODE_FIFO|DLL::IT_MODE_DELETE);
43 43
         if ($dataType instanceof YamlObject) {
44 44
             self::dumpYamlObject($dataType);
45 45
         } elseif (is_array($dataType) && $dataType[0] instanceof YamlObject) {
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         if ($object instanceof Tag) {
130 130
             if (is_scalar($object->value)) {
131 131
                 return "!".$object->tagName.' '.$object->value;
132
-            } else{
132
+            } else {
133 133
                 yield "!".$object->tagName;
134 134
                 self::dump($object->value, $indent + self::INDENT);
135 135
             }
Please login to merge, or discard this patch.
Braces   +12 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,9 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function __construct(int $options = null)
23 23
     {
24
-        if (is_int($options)) self::$options = $options;
24
+        if (is_int($options)) {
25
+            self::$options = $options;
26
+        }
25 27
     }
26 28
 
27 29
     /**
@@ -36,7 +38,9 @@  discard block
 block discarded – undo
36 38
      */
37 39
     public static function toString($dataType, int $options):string
38 40
     {
39
-        if (is_null($dataType)) throw new \Exception(self::class.": No content to convert to Yaml", 1);
41
+        if (is_null($dataType)) {
42
+            throw new \Exception(self::class.": No content to convert to Yaml", 1);
43
+        }
40 44
         self::$options = is_int($options) ? $options : self::OPTIONS;
41 45
         self::$result = new DLL;
42 46
         self::$result->setIteratorMode(DLL::IT_MODE_FIFO | DLL::IT_MODE_DELETE);
@@ -74,8 +78,12 @@  discard block
 block discarded – undo
74 78
         if (is_scalar($dataType)) {
75 79
             switch (gettype($dataType)) {
76 80
                 case 'boolean': return $dataType ? 'true' : 'false';
77
-                case 'float': if (is_infinite((float) $dataType)) return $dataType > 0 ? '.inf' : '-.inf';
78
-                case 'double': if (is_nan((float) $dataType)) return '.nan';
81
+                case 'float': if (is_infinite((float) $dataType)) {
82
+                    return $dataType > 0 ? '.inf' : '-.inf';
83
+                }
84
+                case 'double': if (is_nan((float) $dataType)) {
85
+                    return '.nan';
86
+                }
79 87
                 default:
80 88
                     return $dataType;
81 89
             }
Please login to merge, or discard this patch.
yaml/Compact.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,15 +9,15 @@
 block discarded – undo
9 9
 class Compact extends \ArrayIterator implements \JsonSerializable
10 10
 {
11 11
     // private static $value;
12
- //    public function __construct($argument)
13
- //    {
14
- //     self::$value = $argument;
15
- //        // if ($argument instanceof \Countable && count($argument) > 0) {
16
- //        //     # it's an array-like
17
- //        // } else {
18
- //        //     //it's an object-like
19
- //        // }
20
- //    }
12
+    //    public function __construct($argument)
13
+    //    {
14
+    //     self::$value = $argument;
15
+    //        // if ($argument instanceof \Countable && count($argument) > 0) {
16
+    //        //     # it's an array-like
17
+    //        // } else {
18
+    //        //     //it's an object-like
19
+    //        // }
20
+    //    }
21 21
     //
22 22
     public function __construct()
23 23
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     //
22 22
     public function __construct()
23 23
     {
24
-        parent::__construct([], 1);//1 = Array indices can be accessed as properties in read/write.
24
+        parent::__construct([], 1); //1 = Array indices can be accessed as properties in read/write.
25 25
     }
26 26
 
27 27
     public function jsonSerialize()
Please login to merge, or discard this patch.
yaml/Builder.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -25,14 +25,14 @@  discard block
 block discarded – undo
25 25
     private static function buildNodeList(NodeList $node, &$parent)
26 26
     {
27 27
         $type = property_exists($node, "type") ? $node->type : null;
28
-        if ($type & (Y\RAW | Y\LITTERALS)) {
28
+        if ($type&(Y\RAW|Y\LITTERALS)) {
29 29
             return self::litteral($node, $type);
30 30
         }
31 31
         $p = $parent;
32 32
         switch ($type) {
33 33
             case Y\MAPPING: //fall through
34
-            case Y\SET:      $p = new \StdClass;break;
35
-            case Y\SEQUENCE: $p = [];break;
34
+            case Y\SET:      $p = new \StdClass; break;
35
+            case Y\SEQUENCE: $p = []; break;
36 36
             // case Y\KEY: $p = $parent;break;
37 37
         }
38 38
         $out = null;
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
     {
54 54
         list($line, $type, $value, $identifier) = [$node->line, $node->type, $node->value, $node->identifier];
55 55
         switch ($type) {
56
-            case Y\COMMENT: self::$_root->addComment($line, $value);return;
57
-            case Y\DIRECTIVE: return;//TODO
58
-            case Y\ITEM: self::buildItem($value, $parent);return;
59
-            case Y\KEY:  self::buildKey($node, $parent);return;
56
+            case Y\COMMENT: self::$_root->addComment($line, $value); return;
57
+            case Y\DIRECTIVE: return; //TODO
58
+            case Y\ITEM: self::buildItem($value, $parent); return;
59
+            case Y\KEY:  self::buildKey($node, $parent); return;
60 60
             case Y\REF_DEF: //fall through
61 61
             case Y\REF_CALL://TODO: self::build returns what ?
62 62
                 $tmp = is_object($value) ? self::build($value, $parent) : $node->getPhpValue();
@@ -71,8 +71,8 @@  discard block
 block discarded – undo
71 71
             case Y\SET_VALUE:
72 72
                 $prop = array_keys(get_object_vars($parent));
73 73
                 $key = end($prop);
74
-                if (property_exists($value, "type") && ($value->type & (Y\ITEM | Y\MAPPING))) {
75
-                    $p = $value->type === Y\ITEM  ? [] : new \StdClass;
74
+                if (property_exists($value, "type") && ($value->type & (Y\ITEM|Y\MAPPING))) {
75
+                    $p = $value->type === Y\ITEM ? [] : new \StdClass;
76 76
                     self::build($value, $p);
77 77
                 } else {
78 78
                     $p = self::build($value, $parent->{$key});
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
                 return;
82 82
             case Y\TAG:
83 83
                 if ($parent === self::$_root) {
84
-                    $parent->addTag($identifier);return;
84
+                    $parent->addTag($identifier); return;
85 85
                 } else {//TODO: have somewhere a list of common tags and their treatment
86 86
                     if (in_array($identifier, ['!binary', '!str'])) {
87 87
                         if ($value->value instanceof NodeList) $value->value->type = Y\RAW;
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         if (is_null($identifier)) {
110 110
             throw new \ParseError(sprintf(self::ERROR_NO_KEYNAME, $node->line));
111 111
         } else {
112
-            if ($value instanceof Node && ($value->type & (Y\KEY | Y\ITEM))) {
112
+            if ($value instanceof Node && ($value->type & (Y\KEY|Y\ITEM))) {
113 113
                 $parent->{$identifier} = $value->type & Y\KEY ? new \StdClass : [];
114 114
                 self::build($value, $parent->{$identifier});
115 115
             } elseif (is_object($value)) {
@@ -175,8 +175,8 @@  discard block
 block discarded – undo
175 175
             throw new \ParseError(sprintf(self::INVALID_DOCUMENT, $key));
176 176
         } else {
177 177
             switch (true) {
178
-                case $isSequence: $list->type = Y\SEQUENCE;break;
179
-                case $isSet:      $list->type = Y\SET;break;
178
+                case $isSequence: $list->type = Y\SEQUENCE; break;
179
+                case $isSet:      $list->type = Y\SET; break;
180 180
                 case $isMapping://fall through
181 181
                 default:          $list->type = Y\MAPPING;
182 182
             }
@@ -200,10 +200,10 @@  discard block
 block discarded – undo
200 200
         $children->rewind();
201 201
         $refIndent = $children->current()->indent;
202 202
         $separator = $type === Y\RAW ? '' : "\n";
203
-        $action = function ($c) { return $c->value; };
204
-        if ($type & Y\LITT_FOLDED) {
203
+        $action = function($c) { return $c->value; };
204
+        if ($type&Y\LITT_FOLDED) {
205 205
             $separator = ' ';
206
-            $action = function ($c) use ($refIndent) {
206
+            $action = function($c) use ($refIndent) {
207 207
                 return $c->indent > $refIndent || ($c->type & Y\BLANK) ? "\n".$c->value : $c->value;
208 208
             };
209 209
         }
Please login to merge, or discard this patch.
yaml/Loader.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -10,15 +10,15 @@  discard block
 block discarded – undo
10 10
     //public
11 11
     public $errors = [];
12 12
 
13
-    public const EXCLUDE_DIRECTIVES = 1;//DONT include_directive
14
-    public const IGNORE_COMMENTS    = 2;//DONT include_comments
15
-    public const NO_PARSING_EXCEPTIONS = 4;//THROW Exception on parsing Errors
16
-    public const NO_OBJECT_FOR_DATE = 8;//DONT import date strings as dateTime Object
13
+    public const EXCLUDE_DIRECTIVES = 1; //DONT include_directive
14
+    public const IGNORE_COMMENTS    = 2; //DONT include_comments
15
+    public const NO_PARSING_EXCEPTIONS = 4; //THROW Exception on parsing Errors
16
+    public const NO_OBJECT_FOR_DATE = 8; //DONT import date strings as dateTime Object
17 17
     //privates
18
-    private $content;/* @var null|string */
19
-    private $filePath;/* @var null|string */
20
-    private $debug = 0;//TODO: determine levels
21
-    private $options = 0;/* @var int */
18
+    private $content; /* @var null|string */
19
+    private $filePath; /* @var null|string */
20
+    private $debug = 0; //TODO: determine levels
21
+    private $options = 0; /* @var int */
22 22
     //Exceptions messages
23 23
     private const INVALID_VALUE        = self::class.": at line %d";
24 24
     private const EXCEPTION_NO_FILE    = self::class.": file '%s' does not exists (or path is incorrect?)";
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
 
28 28
     public function __construct($absolutePath = null, $options = null, $debug = 0)
29 29
     {
30
-        $this->debug   = is_int($debug)   ? min($debug, 3) : 1;
31
-        $this->options = is_int($options) ? $options       : $this->options;
30
+        $this->debug   = is_int($debug) ? min($debug, 3) : 1;
31
+        $this->options = is_int($options) ? $options : $this->options;
32 32
         if (is_string($absolutePath)) {
33 33
             $this->load($absolutePath);
34 34
         }
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
         if (!is_array($source)) throw new \Exception(self::EXCEPTION_LINE_SPLIT);
80 80
         $previous = $root = new Node();
81 81
         $emptyLines = [];
82
-        $specialTypes = Y\LITTERALS | Y\BLANK;
82
+        $specialTypes = Y\LITTERALS|Y\BLANK;
83 83
         try {
84 84
             foreach ($source as $lineNb => $lineString) {
85
-                $n = new Node($lineString, $lineNb + 1);//TODO: useful???-> $this->debug && var_dump($n);
85
+                $n = new Node($lineString, $lineNb + 1); //TODO: useful???-> $this->debug && var_dump($n);
86 86
                 $deepest = $previous->getDeepestNode();
87 87
                 if ($deepest->type & Y\PARTIAL) {
88 88
                     //TODO:verify this edge case
@@ -101,8 +101,8 @@  discard block
 block discarded – undo
101 101
                     }
102 102
                     $emptyLines = [];
103 103
                     switch ($n->indent <=> $previous->indent) {
104
-                        case -1: $previous->getParent($n->indent)->add($n);break;
105
-                        case  0: $previous->getParent()->add($n);break;
104
+                        case -1: $previous->getParent($n->indent)->add($n); break;
105
+                        case  0: $previous->getParent()->add($n); break;
106 106
                         default:
107 107
                             if ($this->onDeepestType($n, $previous, $lineString)) continue 2;
108 108
                             $previous->add($n);
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             return $out;
119 119
         } catch (\Error|\Exception|\ParseError $e) {
120 120
             $file = basename($this->filePath);
121
-            $message = basename($e->getFile())."@".$e->getLine().":".$e->getMessage()." in '$file' @".($lineNb+1)."\n";
121
+            $message = basename($e->getFile())."@".$e->getLine().":".$e->getMessage()." in '$file' @".($lineNb + 1)."\n";
122 122
             if ($e instanceof \ParseError && ($this->options & self::NO_PARSING_EXCEPTIONS)) {
123 123
                 trigger_error($message, E_USER_WARNING);
124 124
                 $this->errors[] = $message;
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
         // if ($deepest->type & Y\LITTERALS) {
156 156
         //     $n->value = trim($lineString);//fall through
157 157
         // }
158
-        if (($n->type & Y\SCALAR) && ($deepest->type & (Y\LITTERALS | Y\REF_DEF | Y\SET_VALUE)) && is_null($deepest->value)) {
158
+        if (($n->type & Y\SCALAR) && ($deepest->type & (Y\LITTERALS|Y\REF_DEF|Y\SET_VALUE)) && is_null($deepest->value)) {
159 159
             $previous = $deepest;
160 160
         }
161 161
         if (($deepest->type & Y\TAG) && is_null($deepest->value)) {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         // // if ($previous->type & Y\ITEM && $n->type & Y\KEY) {
165 165
         // //     $previous
166 166
         // // }
167
-        if ($deepest->type & (Y\BLANK | Y\SCALAR) ) {//|| ($previous->type & (Y\ITEM | Y\SET_KEY))) {
167
+        if ($deepest->type & (Y\BLANK|Y\SCALAR)) {//|| ($previous->type & (Y\ITEM | Y\SET_KEY))) {
168 168
                 $previous = $deepest->getParent();
169 169
         //     // if ($n->type === Y\SCALAR && ($deepest->getParent()->type & Y\LITTERALS)) {
170 170
         //     //     // $deepest->type = Y\SCALAR;
Please login to merge, or discard this patch.
yaml/NodeList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
 
16 16
     public function __debugInfo():array
17 17
     {
18
-        return ['type' => Y::getName($this->type) , "dllist" => $this->dllist];
18
+        return ['type' => Y::getName($this->type), "dllist" => $this->dllist];
19 19
     }
20 20
 }
Please login to merge, or discard this patch.