We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1ad04f + 8bbc203 commit b946284Copy full SHA for b946284
src/JsonDiffResult.php
@@ -59,21 +59,25 @@ public function __get($name)
59
}
60
61
// Array Access
62
+ #[\ReturnTypeWillChange]
63
public function offsetExists($offset)
64
{
65
return isset($this->{$offset}) ? $this->{$offset} : null;
66
67
68
69
public function offsetGet($offset)
70
71
72
73
74
75
public function offsetSet($offset, $value)
76
77
throw new CannotChangeDiffResult;
78
79
80
81
public function offsetUnset($offset) {
82
83
0 commit comments