Merge branch 'master' into create-pull-request/outdated

This commit is contained in:
Zach Borboa
2025-12-10 20:31:07 -05:00
committed by GitHub
+5 -1
View File
@@ -180,7 +180,11 @@ class CaseInsensitiveArray implements \ArrayAccess, \Countable, \Iterator
public function key()
{
$key = key($this->data);
return $this->keys[$key] ?? $key;
if ($key === null) {
return null;
} else {
return $this->keys[$key] ?? $key;
}
}
/**