INFRA-132 - Newline after "{"
authorTim Otten <totten@civicrm.org>
Wed, 7 Jan 2015 04:01:33 +0000 (20:01 -0800)
committerTim Otten <totten@civicrm.org>
Wed, 7 Jan 2015 04:01:33 +0000 (20:01 -0800)
22 files changed:
CRM/Admin/Form/ParticipantStatusType.php
CRM/Campaign/BAO/Query.php
CRM/Core/BAO/Address.php
CRM/Core/BAO/UFGroup.php
CRM/Core/Payment.php
CRM/Core/Region.php
CRM/Core/Smarty/plugins/block.crmRegion.php
CRM/Core/Smarty/plugins/modifier.mb_truncate.php
CRM/Event/Cart/BAO/EventInCart.php
CRM/Event/Cart/Form/Cart.php
CRM/Event/Form/ManageEvent/Fee.php
CRM/Event/Form/ManageEvent/Registration.php
CRM/Extension/Manager/Payment.php
CRM/Price/BAO/PriceFieldValue.php
CRM/Price/Form/Set.php
CRM/Report/Utils/Report.php
CRM/Upgrade/Snapshot/V4p2/Price/BAO/FieldValue.php
CRM/Utils/System/Joomla.php
api/v3/Contact.php
bin/cli.class.php
install/index.php
tests/phpunit/CRM/Contact/BAO/GroupContactTest.php

index cf98aa92fbb094a13d07a26f60dd97b793597945..4fcd2d847040f1fd6570e378b926272e9054cd63 100644 (file)
@@ -99,7 +99,8 @@ class CRM_Admin_Form_ParticipantStatusType extends CRM_Admin_Form {
     );
 
     // make sure a malicious POST does not change these on reserved statuses
-    if ($this->_isReserved) { unset($params['name'], $params['class'], $params['is_active']);
+    if ($this->_isReserved) {
+      unset($params['name'], $params['class'], $params['is_active']);
     }
 
     if ($this->_action & CRM_Core_Action::UPDATE) {
index feae5e93af02f9bfa92d3de41dc481b9144f5270..9b8fbe759617d11dbf102bdd77cd2867f7299bc4 100755 (executable)
@@ -589,7 +589,8 @@ INNER JOIN  civicrm_custom_group grp on fld.custom_group_id = grp.id
       foreach (array(
         'current_campaign', 'past_campaign') as $ignore) {
         $index = array_search($ignore, $campaign);
-        if ($index !== FALSE) { unset($campaign[$index]);
+        if ($index !== FALSE) {
+          unset($campaign[$index]);
         }
       }
     }
index d78f98b9b61c95477855a35dd09545a37b957622..c74aa7a073f687e68db93ec80756a49e05d56db2 100644 (file)
@@ -498,7 +498,8 @@ class CRM_Core_BAO_Address extends CRM_Core_DAO_Address {
       if ($count > 1) {
         foreach (array(
           'state', 'state_name', 'country', 'world_region') as $fld) {
-          if (isset($address->$fld)) { unset($address->$fld);
+          if (isset($address->$fld)) {
+            unset($address->$fld);
           }
         }
       }
index 804aeeab4dc709b7a91c080ae9ae36f19d94ca5c..370e9fdd4b3fd7143ee41f549e0a438583a13963 100644 (file)
@@ -242,7 +242,8 @@ class CRM_Core_BAO_UFGroup extends CRM_Core_DAO_UFGroup {
         if ($considerSelector) {
           // drop the fields not meant for the selector
           foreach ($subset as $name => $field) {
-            if (!$field['in_selector']) { unset($subset[$name]);
+            if (!$field['in_selector']) {
+              unset($subset[$name]);
             }
           }
         }
index 7345ab67bf7f84d3a7a48b3ce412b6021e202bd6..70c025d946fc31e8982aaa635fec07b858d261cc 100644 (file)
@@ -596,9 +596,10 @@ abstract class CRM_Core_Payment {
       $extension_instance_found = TRUE;
     }
 
-    if (!$extension_instance_found) { CRM_Core_Error::fatal(
-      "No extension instances of the '{$params['processor_name']}' payment processor were found.<br />" .
-      "$method method is unsupported in legacy payment processors."
+    if (!$extension_instance_found) {
+      CRM_Core_Error::fatal(
+        "No extension instances of the '{$params['processor_name']}' payment processor were found.<br />" .
+        "$method method is unsupported in legacy payment processors."
       );
     }
 
index 8ba4f7faa2fed5a124fdd4aa8e69bd6de547aba4..a0efabc4ebc8181f928fa354566c3760d10efa34 100644 (file)
@@ -233,14 +233,18 @@ class CRM_Core_Region {
    * @return int
    */
   public static function _cmpSnippet($a, $b) {
-    if ($a['weight'] < $b['weight']) { return -1;
+    if ($a['weight'] < $b['weight']) {
+      return -1;
     }
-    if ($a['weight'] > $b['weight']) { return 1;
+    if ($a['weight'] > $b['weight']) {
+      return 1;
     }
     // fallback to name sort; don't really want to do this, but it makes results more stable
-    if ($a['name'] < $b['name']) { return -1;
+    if ($a['name'] < $b['name']) {
+      return -1;
     }
-    if ($a['name'] > $b['name']) { return 1;
+    if ($a['name'] > $b['name']) {
+      return 1;
     }
     return 0;
   }
index 23166b3438f4e6acd4e464980aad6d35ed4b86f3..b625a61c740c809dce4fec578ba6e02bf20bf50c 100644 (file)
@@ -18,7 +18,8 @@
  */
 function smarty_block_crmRegion($params, $content, &$smarty, &$repeat)
 {
-  if ($repeat) { return;
+  if ($repeat) {
+    return;
   }
   require_once 'CRM/Core/Region.php';
   $region = CRM_Core_Region::instance($params['name'], FALSE);
index 05ec0a4166e02f47a8f123b5b87a303b0d97f5c9..8d8e3e56c2605b4a72ed555d48fc2487d3681c2f 100644 (file)
@@ -84,7 +84,8 @@ function smarty_modifier_mb_truncate($string, $length = 80, $etc = '...',
 
     return $substr($string, 0, $length) . $etc;
   }
-  else { return $string;
+  else {
+    return $string;
   }
 }
 
index 9b375887be71a160fb31ace5b95129f2c9b77733..b786cbe20a14990879ad5b058a37c6246a2ebb73 100644 (file)
@@ -317,7 +317,8 @@ class CRM_Event_Cart_BAO_EventInCart extends CRM_Event_Cart_DAO_EventInCart impl
     if ($parent_event_id == NULL) {
       return $this->event->parent_event_id;
     }
-    else { return $this->event->parent_event_id == $parent_event_id;
+    else {
+      return $this->event->parent_event_id == $parent_event_id;
     }
   }
 }
index 58316bfef778eb11e16d18de01672d597ce37c77..ef67dbfb8de55f84317680496c61a53ba970bff9 100644 (file)
@@ -136,7 +136,8 @@ class CRM_Event_Cart_Form_Cart extends CRM_Core_Form {
     if (is_array($ids)) {
       return array_pop($ids);
     }
-    else { return NULL;
+    else {
+      return NULL;
     }
   }
 
index 94965bf0b85ccd4e8e8b3d01e81a33bdb46d99db..4eada5b45b76ab9e309ff38cba63d4670d1e8980 100644 (file)
@@ -445,11 +445,12 @@ class CRM_Event_Form_ManageEvent_Fee extends CRM_Event_Form_ManageEvent {
             }
           }
 
-          foreach ($occurDiscount as $key => $value) { if ($value > 1 && $key <> '') {
+          foreach ($occurDiscount as $key => $value) {
+            if ($value > 1 && $key <> '') {
               if ($key == $values['discount_name'][$i]) {
                 $errors['discount_name[' . $i . ']'] = ts('%1 is already used for Discount Name.', array(1 => $key));
               }
-          }
+            }
           }
 
           //validation for discount labels and values
index 92bb3c205daf9369b845a00577396f59ae6ba362..15c79e0b8f72919167b98cfef0df5e8f930e6a08 100644 (file)
@@ -793,7 +793,8 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent
           continue 2;
         }
       }
-      if ($complete) { return 1;
+      if ($complete) {
+        return 1;
       }
     }
 
index 251e48e29ce24872cd2629db814d8814f69ccf98..92bfff20f7901b6ceeeb78017481c4fe485522e5 100644 (file)
@@ -256,7 +256,8 @@ class CRM_Extension_Manager_Payment extends CRM_Extension_Manager_Base {
           'payment_type' => $dao->payment_type,
         );
       }
-      else { CRM_Core_Error::fatal("Unable to find payment processor in " . __CLASS__ . '::' . __METHOD__);
+      else {
+        CRM_Core_Error::fatal("Unable to find payment processor in " . __CLASS__ . '::' . __METHOD__);
       }
     }
 
index 05404c1f18b9d6f1feb8ab83fe0085eebd4d5ad1..a457e0beec7740b9e3ea9953b2f108f82cccdd5f 100644 (file)
@@ -89,7 +89,8 @@ class CRM_Price_BAO_PriceFieldValue extends CRM_Price_DAO_PriceFieldValue {
     }
 
     if ($id  && !empty($params['weight'])) {
-      if (isset($params['name'])) { unset($params['name']);
+      if (isset($params['name'])) {
+        unset($params['name']);
       }
 
       $oldWeight = NULL;
index e8261fac68a473dc91743820efa1c684acc14d41..5bcc4d664e15254b52329e88cea932ee37064141 100644 (file)
@@ -272,8 +272,10 @@ class CRM_Price_Form_Set extends CRM_Core_Form {
     $compIds = array();
     $extends = CRM_Utils_Array::value('extends', $params);
     if (is_array($extends)) {
-      foreach ($extends as $compId => $selected) { if ($selected) {   $compIds[] = $compId;
-      }
+      foreach ($extends as $compId => $selected) {
+        if ($selected) {
+          $compIds[] = $compId;
+        }
       }
     }
     $params['extends'] = implode(CRM_Core_DAO::VALUE_SEPARATOR, $compIds);
index 5cbf13d54f6e4ff1f7f0eea2e24459dabb79ea6a..765bb47271b7cc96ab575049a963c272c1bafd77 100644 (file)
@@ -162,7 +162,8 @@ WHERE  TRIM(BOTH '/' FROM CONCAT(report_id, '/', name)) = %1";
    * @return int|null|string
    */
   public static function getInstanceCount($optionVal) {
-    if (empty($optionVal)) { return 0;
+    if (empty($optionVal)) {
+      return 0;
     }
 
     $sql = "
index 9eee0fe704c6ac2dca4eade350ce56f647fc60ad..31cfd66b8f32731d4a67e7dcaa7759fffef708c3 100644 (file)
@@ -86,7 +86,8 @@ class CRM_Upgrade_Snapshot_V4p2_Price_BAO_FieldValue extends CRM_Upgrade_Snapsho
     }
 
     if ($id = CRM_Utils_Array::value('id', $ids)) {
-      if (isset($params['name'])) { unset($params['name']);
+      if (isset($params['name'])) {
+        unset($params['name']);
       }
 
       $oldWeight = NULL;
index 9d999fa3462b78702088d7b637b8af670d0602a2..dabd4f59aa829f9ec0eb71fcee98c6680df647c3 100644 (file)
@@ -541,7 +541,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
         }
       }
       else {
-        if (!JUserHelper::verifyPassword($password, $dbPassword, $dbId)) { return FALSE;
+        if (!JUserHelper::verifyPassword($password, $dbPassword, $dbId)) {
+          return FALSE;
         }
 
         //include additional files required by Joomla 3.2.1+
index 8513bcd3ce6b41fc4576d219f49545d1a4e5aa2d..d960023fccdbf687fc45ebb83e3ff347f163ba68 100644 (file)
@@ -254,7 +254,8 @@ function _civicrm_api3_contact_get_supportanomalies(&$params, &$options) {
     if (is_array($params['filter.group_id'])) {
       $groups = $params['filter.group_id'];
     }
-    else { $groups = explode(',', $params['filter.group_id']);
+    else {
+      $groups = explode(',', $params['filter.group_id']);
     }
     unset($params['filter.group_id']);
     $groups = array_flip($groups);
index 78988649b4648137aabbbbdd7dfde991bfde8bdd..d64802efb5f56dbc512cc819264046988ee7b95f 100644 (file)
@@ -397,7 +397,8 @@ class civicrm_cli_csv_file extends civicrm_cli {
     $this->header = $header;
     while (($data = fgetcsv($handle, 0, $this->separator)) !== FALSE) {
       // skip blank lines
-      if (count($data) == 1 && is_null($data[0])) { continue;
+      if (count($data) == 1 && is_null($data[0])) {
+        continue;
       }
       $this->row++;
       $params = $this->convertLine($data);
index 1ea38db3a2800e0264ea52f6456ffad25e7f2949..55028d6c454fe3d75a154816b3632f51934c27be 100644 (file)
@@ -130,7 +130,8 @@ foreach ($langs as $locale => $_) {
   if ($locale == 'en_US') {
     continue;
   }
-  if (!file_exists(implode(CIVICRM_DIRECTORY_SEPARATOR, array($crmPath, 'sql', "civicrm_data.$locale.mysql")))) { unset($langs[$locale]);
+  if (!file_exists(implode(CIVICRM_DIRECTORY_SEPARATOR, array($crmPath, 'sql', "civicrm_data.$locale.mysql")))) {
+    unset($langs[$locale]);
   }
 }
 
index 35a966b1684573c3a1d1e251b9cfc9d4f21bd8ef..079966203a37d49d4816bb207b85e9bbd6816a7d 100644 (file)
@@ -63,11 +63,13 @@ class CRM_Contact_BAO_GroupContactTest extends CiviUnitTestCase {
     $groupContacts = CRM_Core_DAO::createTestObject('CRM_Contact_DAO_GroupContact', NULL, 10);
 
     //check the group contact id is not null for each of them
-    foreach ($groupContacts as $gc) { $this->assertNotNull($gc->id);
+    foreach ($groupContacts as $gc) {
+      $this->assertNotNull($gc->id);
     }
 
     //cleanup
-    foreach ($groupContacts as $gc) { $gc->deleteTestObjects('CRM_Contact_DAO_GroupContact');
+    foreach ($groupContacts as $gc) {
+      $gc->deleteTestObjects('CRM_Contact_DAO_GroupContact');
     }
   }