Merge pull request #23912 from mlutfy/reportVars
[civicrm-core.git] / CRM / Utils / Cache / ArrayCache.php
index 45e0b4ed46341eb18875834059db98e4bce04b0e..b5d947e88d33c0ba1f18177f29bb623e8908b8a5 100644 (file)
@@ -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;
   }
 
 }