Replace coalesce pattern with coalesce operator
[civicrm-core.git] / CRM / Contact / Form / Search.php
index 38b218ab171bc3bbe4d7fed53aca11d73557563c..5c952c7505a30bc24914efd80e22a1cdbd37cdea 100644 (file)
@@ -367,7 +367,7 @@ class CRM_Contact_Form_Search extends CRM_Core_Form_Search {
         $taskParams['deletedContacts'] = CRM_Utils_Array::value('deleted_contacts', $this->_formValues);
       }
       $className = $this->_modeValue['taskClassName'];
-      $taskParams['ssID'] = isset($this->_ssID) ? $this->_ssID : NULL;
+      $taskParams['ssID'] = $this->_ssID ?? NULL;
       $this->_taskList += $className::permissionedTaskTitles(CRM_Core_Permission::getPermission(), $taskParams);
     }