Skip to content
Snippets Groups Projects
Unverified Commit d3180d7d authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #20491 from seamuslee001/array_cache_undefined

[php8-compat] Fix undefined property on Array Cache class in wordpres…
parents 03604cc0 9ff6c3e1
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