You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could be usefull add ability to disable test operation in JsonDiff
some node classes like fast-json-patch work also without and in websocket comunication can reduce traffic with large amount of change
if ($this->jsonPatch !== null) {
if ( ! self::SKIP_TEST_ENTRIES ) {
$this->jsonPatch->op(new Test($this->path, $original));
}
$this->jsonPatch->op(new Replace($this->path, $new));
}