INFRA-132 - Put space after flow-control (if/switch/for/foreach/while)
[civicrm-core.git] / CRM / Dedupe / BAO / QueryBuilder.php
index dc7fb410662e5805efda628bf743c9729197f7a9..ee56688353131cab8a96dbecbed304b96a39c54b 100644 (file)
@@ -11,11 +11,11 @@ class CRM_Dedupe_BAO_QueryBuilder {
    *
    * @return string
    */
-  public static function internalFilters( $rg, $strID1 = 'contact1.id', $strID2 = 'contact2.id' ) {
+  public static function internalFilters($rg, $strID1 = 'contact1.id', $strID2 = 'contact2.id') {
     // Add a contact id filter for dedupe by group requests and add logic
     // to remove duplicate results with opposing orders, i.e. 1,2 and 2,1
-    if!empty($rg->contactIds) ) {
-      $cids = implode(',',$rg->contactIds);
+    if (!empty($rg->contactIds) ) {
+      $cids = implode(',', $rg->contactIds);
       return "($strID1 IN ($cids) AND ( $strID2 NOT IN ($cids) OR ($strID2 IN ($cids) AND $strID1 < $strID2) ))";
     }
     else {
@@ -23,6 +23,3 @@ class CRM_Dedupe_BAO_QueryBuilder {
     }
   }
 };
-
-
-