Skip to content
Snippets Groups Projects
Commit c93ea4af authored by Matthew Grasmick's avatar Matthew Grasmick
Browse files

Fixing has() to recognize keys with null value.

parent 9c253bb1
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,7 @@ class Data implements DataInterface
$currentKey = $keyPath[$i];
if (
!is_array($currentValue) ||
!isset($currentValue[$currentKey])
!array_key_exists($currentKey, $currentValue)
) {
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment