File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,11 @@ class JsonDiff
45
45
*/
46
46
const COLLECT_MODIFIED_DIFF = 64 ;
47
47
48
+ /**
49
+ * SKIP_TEST_OPS is an option to skip the generation of test operations for JsonPatch.
50
+ */
51
+ const SKIP_TEST_OPS = 128 ;
52
+
48
53
49
54
private $ options = 0 ;
50
55
@@ -258,6 +263,8 @@ public function getMergePatch()
258
263
private function process ($ original , $ new )
259
264
{
260
265
$ merge = !($ this ->options & self ::SKIP_JSON_MERGE_PATCH );
266
+
267
+ $ addTestOps = !($ this ->options & self ::SKIP_TEST_OPS );
261
268
262
269
if ($ this ->options & self ::TOLERATE_ASSOCIATIVE_ARRAYS ) {
263
270
if (is_array ($ original ) && !empty ($ original ) && !array_key_exists (0 , $ original )) {
@@ -281,7 +288,9 @@ private function process($original, $new)
281
288
$ this ->modifiedPaths [] = $ this ->path ;
282
289
283
290
if ($ this ->jsonPatch !== null ) {
284
- $ this ->jsonPatch ->op (new Test ($ this ->path , $ original ));
291
+ if ($ addTestOps ) {
292
+ $ this ->jsonPatch ->op (new Test ($ this ->path , $ original ));
293
+ }
285
294
$ this ->jsonPatch ->op (new Replace ($ this ->path , $ new ));
286
295
}
287
296
@@ -557,4 +566,4 @@ private function rearrangeEqualItems(array $original, array $new)
557
566
558
567
return $ newRearranged ;
559
568
}
560
- }
569
+ }
You can’t perform that action at this time.
0 commit comments