Passed
Push — master ( 4554ad...cc847b )
by Viacheslav
01:49
created
src/JsonDiff.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
             if ($isArray) {
248 248
                 $actualKey -= $removedOffset;
249 249
             }
250
-            $this->path .= '/' . JsonPointer::escapeSegment($actualKey, $this->options & self::JSON_URI_FRAGMENT_ID);
250
+            $this->path .= '/'.JsonPointer::escapeSegment($actualKey, $this->options & self::JSON_URI_FRAGMENT_ID);
251 251
             $this->pathItems[] = $actualKey;
252 252
 
253 253
             if (array_key_exists($key, $newArray)) {
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
                 return null;
279 279
             }
280 280
             $newOrdered[$key] = $value;
281
-            $path = $this->path . '/' . JsonPointer::escapeSegment($key, $this->options & self::JSON_URI_FRAGMENT_ID);
281
+            $path = $this->path.'/'.JsonPointer::escapeSegment($key, $this->options & self::JSON_URI_FRAGMENT_ID);
282 282
             $pathItems = $this->pathItems;
283 283
             $pathItems[] = $key;
284 284
             JsonPointer::add($this->added, $pathItems, $value);
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
 
289 289
         }
290 290
 
291
-        return is_array($new) ? $newOrdered : (object)$newOrdered;
291
+        return is_array($new) ? $newOrdered : (object) $newOrdered;
292 292
     }
293 293
 
294 294
     private function rearrangeArray(array $original, array $new)
Please login to merge, or discard this patch.
src/JsonValueReplace.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             $path = $this->path;
46 46
             $pathItems = $this->pathItems;
47 47
             $actualKey = $key;
48
-            $this->path .= '/' . JsonPointer::escapeSegment($actualKey);
48
+            $this->path .= '/'.JsonPointer::escapeSegment($actualKey);
49 49
             $this->pathItems[] = $actualKey;
50 50
 
51 51
             $result[$key] = $this->process($originalValue);
@@ -54,6 +54,6 @@  discard block
 block discarded – undo
54 54
             $this->pathItems = $pathItems;
55 55
         }
56 56
 
57
-        return $data instanceof \stdClass ? (object)$result : $result;
57
+        return $data instanceof \stdClass ? (object) $result : $result;
58 58
     }
59 59
 }
60 60
\ No newline at end of file
Please login to merge, or discard this patch.
src/JsonPatch.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         foreach ($data as $operation) {
34 34
             /** @var OpPath|OpPathValue|OpPathFrom $operation */
35 35
             if (is_array($operation)) {
36
-                $operation = (object)$operation;
36
+                $operation = (object) $operation;
37 37
             }
38 38
 
39 39
             if (!isset($operation->op)) {
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
                     $op = new Test();
65 65
                     break;
66 66
                 default:
67
-                    throw new Exception('Unknown "op": ' . $operation->op);
67
+                    throw new Exception('Unknown "op": '.$operation->op);
68 68
             }
69 69
             $op->path = $operation->path;
70 70
             if ($op instanceof OpPathValue) {
71
-                if (!array_key_exists('value', (array)$operation)) {
71
+                if (!array_key_exists('value', (array) $operation)) {
72 72
                     throw new Exception('Missing "value" in operation data');
73 73
                 }
74 74
                 $op->value = $operation->value;
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     {
88 88
         $result = array();
89 89
         foreach ($patch->operations as $operation) {
90
-            $result[] = (object)(array)$operation;
90
+            $result[] = (object) (array) $operation;
91 91
         }
92 92
 
93 93
         return $result;
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
                         $diff = new JsonDiff($operation->value, $value,
145 145
                             JsonDiff::STOP_ON_DIFF);
146 146
                         if ($diff->getDiffCnt() !== 0) {
147
-                            throw new Exception('Test operation ' . json_encode($operation, JSON_UNESCAPED_SLASHES)
148
-                                . ' failed: ' . json_encode($value));
147
+                            throw new Exception('Test operation '.json_encode($operation, JSON_UNESCAPED_SLASHES)
148
+                                . ' failed: '.json_encode($value));
149 149
                         }
150 150
                         break;
151 151
                 }
Please login to merge, or discard this patch.
src/JsonPointer.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
             return self::splitPathURIFragment($pathItems);
33 33
         } else {
34 34
             if ($first !== '') {
35
-                throw new Exception('Path must start with "/": ' . $path);
35
+                throw new Exception('Path must start with "/": '.$path);
36 36
             }
37 37
             return self::splitPathJsonString($pathItems);
38 38
         }
@@ -79,12 +79,12 @@  discard block
 block discarded – undo
79 79
             } else { // null or array
80 80
                 $intKey = filter_var($key, FILTER_VALIDATE_INT);
81 81
                 if ($ref === null && (false === $intKey || $intKey !== 0)) {
82
-                    $key = (string)$key;
82
+                    $key = (string) $key;
83 83
                     if ($recursively) {
84 84
                         $ref = new \stdClass();
85 85
                         $ref = &$ref->{$key};
86 86
                     } else {
87
-                        throw new Exception('Non-existent path item: ' . $key);
87
+                        throw new Exception('Non-existent path item: '.$key);
88 88
                     }
89 89
                 } else {
90 90
                     if ($recursively && $ref === null) $ref = array();
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
         if (array_key_exists($key, $a)) {
117 117
             return true;
118 118
         }
119
-        $key = (string)$key;
119
+        $key = (string) $key;
120 120
         foreach ($a as $k => $v) {
121
-            if ((string)$k === $key) {
121
+            if ((string) $k === $key) {
122 122
                 return true;
123 123
             }
124 124
         }
@@ -127,9 +127,9 @@  discard block
 block discarded – undo
127 127
 
128 128
     private static function arrayGet($key, array $a)
129 129
     {
130
-        $key = (string)$key;
130
+        $key = (string) $key;
131 131
         foreach ($a as $k => $v) {
132
-            if ((string)$k === $key) {
132
+            if ((string) $k === $key) {
133 133
                 return $v;
134 134
             }
135 135
         }
@@ -153,20 +153,20 @@  discard block
 block discarded – undo
153 153
                         Exception::EMPTY_PROPERTY_NAME_UNSUPPORTED);
154 154
                 }
155 155
 
156
-                $vars = (array)$ref;
156
+                $vars = (array) $ref;
157 157
                 if (self::arrayKeyExists($key, $vars)) {
158 158
                     $ref = self::arrayGet($key, $vars);
159 159
                 } else {
160
-                    throw new Exception('Key not found: ' . $key);
160
+                    throw new Exception('Key not found: '.$key);
161 161
                 }
162 162
             } elseif (is_array($ref)) {
163 163
                 if (self::arrayKeyExists($key, $ref)) {
164 164
                     $ref = $ref[$key];
165 165
                 } else {
166
-                    throw new Exception('Key not found: ' . $key);
166
+                    throw new Exception('Key not found: '.$key);
167 167
                 }
168 168
             } else {
169
-                throw new Exception('Key not found: ' . $key);
169
+                throw new Exception('Key not found: '.$key);
170 170
             }
171 171
         }
172 172
         return $ref;
@@ -199,13 +199,13 @@  discard block
 block discarded – undo
199 199
                 if (property_exists($ref, $key)) {
200 200
                     $ref = &$ref->$key;
201 201
                 } else {
202
-                    throw new Exception('Key not found: ' . $key);
202
+                    throw new Exception('Key not found: '.$key);
203 203
                 }
204 204
             } else {
205 205
                 if (array_key_exists($key, $ref)) {
206 206
                     $ref = &$ref[$key];
207 207
                 } else {
208
-                    throw new Exception('Key not found: ' . $key);
208
+                    throw new Exception('Key not found: '.$key);
209 209
                 }
210 210
             }
211 211
         }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,9 @@
 block discarded – undo
87 87
                         throw new Exception('Non-existent path item: ' . $key);
88 88
                     }
89 89
                 } else {
90
-                    if ($recursively && $ref === null) $ref = array();
90
+                    if ($recursively && $ref === null) {
91
+                        $ref = array();
92
+                    }
91 93
                     if ('-' === $key) {
92 94
                         $ref = &$ref[];
93 95
                     } else {
Please login to merge, or discard this patch.