X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FActivity%2FBAO%2FActivityContact.php;h=261b08f8fecfe5f8071113cdd961a5ef7d5c1356;hb=b537418f3153f9ebdbeae1d1c76665989aef421e;hp=393f3bbb48c66728567cb2c9c5e92775f5465f28;hpb=5c22567ff39bf585b2da7920620666f4aef2cc92;p=civicrm-core.git diff --git a/CRM/Activity/BAO/ActivityContact.php b/CRM/Activity/BAO/ActivityContact.php index 393f3bbb48..261b08f8fe 100644 --- a/CRM/Activity/BAO/ActivityContact.php +++ b/CRM/Activity/BAO/ActivityContact.php @@ -1,34 +1,18 @@ array($activityID, 'Integer'), - 2 => array($recordTypeID, 'Integer'), - ); + $params = [ + 1 => [$activityID, 'Integer'], + 2 => [$recordTypeID, 'Integer'], + ]; $dao = CRM_Core_DAO::executeQuery($query, $params); while ($dao->fetch()) { @@ -98,7 +82,7 @@ AND contact_a.is_deleted = 0 $ids[] = $dao->id; } - return $alsoIDs ? array($names, $ids) : $names; + return $alsoIDs ? [$names, $ids] : $names; } /** @@ -110,7 +94,7 @@ AND contact_a.is_deleted = 0 * @return mixed */ public static function retrieveContactIdsByActivityId($activityID, $recordTypeID) { - $activityContact = array(); + $activityContact = []; if (!CRM_Utils_Rule::positiveInteger($activityID) || !CRM_Utils_Rule::positiveInteger($recordTypeID) ) { @@ -124,10 +108,10 @@ WHERE activity_id = %1 AND record_type_id = %2 AND civicrm_contact.is_deleted = 0 "; - $params = array( - 1 => array($activityID, 'Integer'), - 2 => array($recordTypeID, 'Integer'), - ); + $params = [ + 1 => [$activityID, 'Integer'], + 2 => [$recordTypeID, 'Integer'], + ]; $dao = CRM_Core_DAO::executeQuery($sql, $params); while ($dao->fetch()) { @@ -147,12 +131,12 @@ AND civicrm_contact.is_deleted = 0 * @see DB_DataObject::getLink() * * @return array|null - * array = if there are links defined for this table. - * empty array - if there is a links.ini file, but no links on this table - * null - if no links.ini exists for this database (hence try auto_links). + * array if there are links defined for this table. + * empty array - if there is a links.ini file, but no links on this table + * null - if no links.ini exists for this database (hence try auto_links). */ public function links() { - $link = array('activity_id' => 'civicrm_activity:id'); + $link = ['activity_id' => 'civicrm_activity:id']; return $link; }