Skip to content
Snippets Groups Projects
Commit 9ff6c3e1 authored by Seamus Lee's avatar Seamus Lee
Browse files

[php8-compat] Fix undefined property on Array Cache class in wordpress on PHP8

parent 03604cc0
Branches
Tags
No related merge requests found
......@@ -122,7 +122,7 @@ class CRM_Utils_Cache_ArrayCache implements CRM_Utils_Cache_Interface {
* @return int|null
*/
public function getExpires($key) {
return $this->_expires[$key] ?: NULL;
return $this->_expires[$key] ?? NULL;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment