INFRA-132 - BraceOnNewLine. ContentAfterBrace. FirstIndexNoNewline.
authorTim Otten <totten@civicrm.org>
Fri, 9 Jan 2015 22:48:38 +0000 (14:48 -0800)
committerTim Otten <totten@civicrm.org>
Sat, 10 Jan 2015 03:41:27 +0000 (19:41 -0800)
49 files changed:
CRM/Campaign/Form/Survey/TabHeader.php
CRM/Contact/BAO/GroupContact.php
CRM/Contact/BAO/GroupNestingCache.php
CRM/Contact/BAO/Individual.php
CRM/Contact/Form/Contact.php
CRM/Contact/Form/Edit/Demographics.php
CRM/Contact/Form/Edit/Email.php
CRM/Contact/Form/Location.php
CRM/Contact/Form/Merge.php
CRM/Contact/Form/Search/Builder.php
CRM/Contact/Form/Search/Criteria.php
CRM/Contact/Form/Search/Custom.php
CRM/Contact/Form/Search/Custom/ContribSYBNT.php
CRM/Contact/Form/Task/HookSample.php
CRM/Contact/Form/Task/Map.php
CRM/Contribute/Form/AbstractEditPayment.php
CRM/Contribute/Form/UpdateSubscription.php
CRM/Contribute/Import/Parser/Contribution.php
CRM/Core/BAO/Navigation.php
CRM/Core/BAO/Preferences.php
CRM/Core/BAO/PrevNextCache.php
CRM/Core/BAO/SchemaHandler.php
CRM/Core/BAO/Setting.php
CRM/Core/I18n/Schema.php
CRM/Core/I18n/SchemaStructure_4_2_alpha1.php
CRM/Core/I18n/SchemaStructure_4_3_1.php
CRM/Core/I18n/SchemaStructure_4_5_alpha1.php
CRM/Core/I18n/SchemaStructure_4_5_beta2.php
CRM/Core/JobManager.php
CRM/Core/Smarty/plugins/block.crmRegion.php
CRM/Event/Form/Registration.php
CRM/Event/Form/Registration/ThankYou.php
CRM/Event/Form/Search.php
CRM/Event/Form/Task/Delete.php
CRM/Event/Import/Parser/Participant.php
CRM/Event/Info.php
CRM/Event/Page/EventInfo.php
CRM/Event/Page/ManageEvent.php
CRM/Logging/ReportDetail.php
CRM/Mailing/Selector/Event.php
CRM/Price/BAO/PriceField.php
CRM/SMS/Form/Group.php
CRM/SMS/Form/Schedule.php
CRM/SMS/Form/Upload.php
CRM/SMS/Page/Provider.php
api/v3/Contact.php
api/v3/Mailing.php
tests/phpunit/CRM/Batch/Form/EntryTest.php
tests/phpunit/CRM/Contact/BAO/QueryTest.php

index b43e5c1f4389c1e592ad434e32a30634b5982e2e..940e2a6cc7ade9ba456255cd6c653a1f3184a1c3 100644 (file)
@@ -52,9 +52,11 @@ class CRM_Campaign_Form_Survey_TabHeader {
     $form->assign_by_ref('tabHeader', $tabs);
     CRM_Core_Resources::singleton()
       ->addScriptFile('civicrm', 'templates/CRM/common/TabHeader.js', 1, 'html-header')
-      ->addSetting(array('tabSettings' => array(
-        'active' => self::getCurrentTab($tabs),
-      )));
+      ->addSetting(array(
+        'tabSettings' => array(
+          'active' => self::getCurrentTab($tabs),
+        ),
+      ));
     return $tabs;
   }
 
@@ -69,19 +71,22 @@ class CRM_Campaign_Form_Survey_TabHeader {
     }
 
     $tabs = array(
-      'main' => array('title' => ts('Main Information'),
+      'main' => array(
+        'title' => ts('Main Information'),
         'link' => NULL,
         'valid' => FALSE,
         'active' => FALSE,
         'current' => FALSE,
       ),
-      'questions' => array('title' => ts('Questions'),
+      'questions' => array(
+        'title' => ts('Questions'),
         'link' => NULL,
         'valid' => FALSE,
         'active' => FALSE,
         'current' => FALSE,
       ),
-      'results' => array('title' => ts('Results'),
+      'results' => array(
+        'title' => ts('Results'),
         'link' => NULL,
         'valid' => FALSE,
         'active' => FALSE,
index c47ce54d4c792803e40864d7c35896eafb84916f..fe3ce3641894c0ef508e86093ab30cef12032d3e 100644 (file)
@@ -622,7 +622,8 @@ SELECT    *
    * @static
    */
   public static function mergeGroupContact($mainContactId, $otherContactId) {
-    $params = array(1 => array($mainContactId, 'Integer'),
+    $params = array(
+      1 => array($mainContactId, 'Integer'),
       2 => array($otherContactId, 'Integer'),
     );
 
@@ -765,7 +766,8 @@ WHERE  group_id = %1
 AND    status = %2
 AND    contact_id IN ( $contactStr )
 ";
-      $params = array(1 => array($groupID, 'Integer'),
+      $params = array(
+        1 => array($groupID, 'Integer'),
         2 => array($status, 'String'),
       );
 
index dad6896268f1f9909f1dca19814d00e5ea4f1620..d363bc16b9c572cd7b0009ef670a85b60ee547bc 100644 (file)
@@ -51,13 +51,15 @@ WHERE  n.child_group_id  = gc.id
     $tree = array();
     while ($dao->fetch()) {
       if (!array_key_exists($dao->child, $tree)) {
-        $tree[$dao->child] = array('children' => array(),
+        $tree[$dao->child] = array(
+          'children' => array(),
           'parents' => array(),
         );
       }
 
       if (!array_key_exists($dao->parent, $tree)) {
-        $tree[$dao->parent] = array('children' => array(),
+        $tree[$dao->parent] = array(
+          'children' => array(),
           'parents' => array(),
         );
       }
index 88613b8e4fa6a175bb778fc1722a30e126a394fc..c62456aef3162a9e52ef27058fae796ba6117083 100644 (file)
@@ -41,7 +41,8 @@ class CRM_Contact_BAO_Individual extends CRM_Contact_DAO_Contact {
   /**
    * This is a contructor of the class.
    */
-  public function __construct() {}
+  public function __construct() {
+  }
 
   /**
    * Function is used to format the individual contact values
index c0c8f865d115c6b5eb10170751e6f4aabb954f28..495a042896056a950b5c81b1fde0ab05b8fcb7a5 100644 (file)
@@ -901,7 +901,8 @@ class CRM_Contact_Form_Contact extends CRM_Core_Form {
 
     if (isset($params['contact_id'])) {
       // process membership status for deceased contact
-      $deceasedParams = array('contact_id' => CRM_Utils_Array::value('contact_id', $params),
+      $deceasedParams = array(
+        'contact_id' => CRM_Utils_Array::value('contact_id', $params),
         'is_deceased' => CRM_Utils_Array::value('is_deceased', $params, FALSE),
         'deceased_date' => CRM_Utils_Array::value('deceased_date', $params, NULL),
       );
index 3fe5715d6941930e8832f1fbaf3d2c1aca783e7f..358b76cfdb0875ce40b35a43a6f35a67408408d6 100644 (file)
@@ -75,5 +75,6 @@ class CRM_Contact_Form_Edit_Demographics {
    *
    * @return void
    */
-  public static function setDefaultValues(&$form, &$defaults) {}
+  public static function setDefaultValues(&$form, &$defaults) {
+  }
 }
index 003abdef41b1ba7b3064eabb6df9ff61c75deebd..91953302ace09ed5155f2d9077eaa18a29689089 100644 (file)
@@ -73,7 +73,8 @@ class CRM_Contact_Form_Edit_Email {
 
       //On-hold select
       if ($multipleBulk) {
-        $holdOptions = array(0 => ts('- select -'),
+        $holdOptions = array(
+          0 => ts('- select -'),
           1 => ts('On Hold Bounce'),
           2 => ts('On Hold Opt Out'),
         );
index 2c8f35a39e058ee4e2e70ddf149d5d59869d9250..77a2ed0350bccc51427e8f24c21dab61d0d50c18 100644 (file)
@@ -56,7 +56,8 @@ class CRM_Contact_Form_Location {
     $className = CRM_Utils_System::getClassName($form);
     if (in_array($className, array(
       'CRM_Event_Form_ManageEvent_Location', 'CRM_Contact_Form_Domain'))) {
-      $form->_blocks = array('Address' => ts('Address'),
+      $form->_blocks = array(
+        'Address' => ts('Address'),
         'Email' => ts('Email'),
         'Phone' => ts('Phone'),
       );
index 4a0810057662e0a122dcbb186dcbeba7be6257a8..4141d06aaa48659817e95b8df5b900ab31343892 100644 (file)
@@ -257,7 +257,8 @@ class CRM_Contact_Form_Merge extends CRM_Core_Form {
     return array('deleteOther' => 1);
   }
 
-  public function addRules() {}
+  public function addRules() {
+  }
 
   public function buildQuickForm() {
     CRM_Utils_System::setTitle(ts('Merge %1s', array(1 => $this->_contactType)));
index 89550d769c75fcbb646be035773eb72e404449b9..18338dc46526d449faea3b929352293b0ad54fea 100644 (file)
@@ -296,7 +296,8 @@ class CRM_Contact_Form_Search_Builder extends CRM_Contact_Form_Search {
     return TRUE;
   }
 
-  public function normalizeFormValues() {}
+  public function normalizeFormValues() {
+  }
 
   /**
    * @param $formValues
index 4234e81019d9bea12b0bb940eee5eab193d55fb3..68fd674444a7ad2e469b5d1b9dc6bfe70a242d66 100644 (file)
@@ -192,7 +192,8 @@ class CRM_Contact_Form_Search_Criteria {
     $form->addElement('select',
       'operator',
       ts('Search Operator'),
-      array('AND' => ts('AND'),
+      array(
+        'AND' => ts('AND'),
         'OR' => ts('OR'),
       )
     );
@@ -234,7 +235,8 @@ class CRM_Contact_Form_Search_Criteria {
     $form->addElement('select',
       'privacy_operator',
       ts('Operator'),
-      array('OR' => ts('OR'),
+      array(
+        'OR' => ts('OR'),
         'AND' => ts('AND'),
       )
     );
index a1e2dcd954100d5fb6b21f0bcf244045eca6265e..283819d2c79d1fb9d18de99d77f013831c77be1a 100644 (file)
@@ -64,7 +64,8 @@ class CRM_Contact_Form_Search_Custom extends CRM_Contact_Form_Search {
     }
 
     // set breadcrumb to return to Custom Search listings page
-    $breadCrumb = array(array('title' => ts('Custom Searches'),
+    $breadCrumb = array(array(
+        'title' => ts('Custom Searches'),
         'url' => CRM_Utils_System::url('civicrm/contact/search/custom/list',
           'reset=1'
         ),
index 3017c4c02ddd4b7b4ddbf66bae0a2bd8004583ac..79ca97a975561e356182ee94edd62f9ee182c12b 100644 (file)
@@ -51,7 +51,8 @@ class CRM_Contact_Form_Search_Custom_ContribSYBNT implements CRM_Contact_Form_Se
       ts('Contribution Amount') => 'donation_amount',
     );
 
-    $this->_amounts = array('min_amount_1' => ts('Min Amount One'),
+    $this->_amounts = array(
+      'min_amount_1' => ts('Min Amount One'),
       'max_amount_1' => ts('Max Amount One'),
       'min_amount_2' => ts('Min Amount Two'),
       'max_amount_2' => ts('Max Amount Two'),
@@ -59,7 +60,8 @@ class CRM_Contact_Form_Search_Custom_ContribSYBNT implements CRM_Contact_Form_Se
       'exclude_max_amount' => ts('Exclusion Max Amount'),
     );
 
-    $this->_dates = array('start_date_1' => ts('Start Date One'),
+    $this->_dates = array(
+      'start_date_1' => ts('Start Date One'),
       'end_date_1' => ts('End Date One'),
       'start_date_2' => ts('Start Date Two'),
       'end_date_2' => ts('End Date Two'),
index c5e84e308f76d404a7442ea14bdfe5e33118d187..7cd440096ae8807cb4c19586e28056643c4f85c0 100644 (file)
@@ -88,5 +88,6 @@ AND    c.id IN ( $contactIDs )";
    *
    * @return void
    */
-  public function postProcess() {}
+  public function postProcess() {
+  }
 }
index fa2d6700118f806ad2b7018bea5667ae145e1725..c1f4e8541fe28046055138710181c1d11db55177 100644 (file)
@@ -136,7 +136,8 @@ class CRM_Contact_Form_Task_Map extends CRM_Contact_Form_Task {
    *
    * @return void
    */
-  public function postProcess() {}
+  public function postProcess() {
+  }
 
   /**
    * Assign smarty variables to the template that will be used by google api to plot the contacts
index d57f8819961c94e9c803fe0b38d4206ee5020b5f..55dd114c9d4b9ae86206230d77c5c82330bdbc66 100644 (file)
@@ -257,7 +257,7 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form {
    * @param int $id
    * @todo - this function is a long way, non standard of saying $dao = new CRM_Contribute_DAO_ContributionProduct(); $dao->id = $id; $dao->find();
    */
-  public function assignPremiumProduct($id) { //to get Premium id
+  public function assignPremiumProduct($id) {
     $sql = "
 SELECT *
 FROM   civicrm_contribution_product
@@ -436,11 +436,13 @@ LEFT JOIN  civicrm_contribution on (civicrm_contribution.contact_id = civicrm_co
   }
 
   /**
+   * Get current currency from DB or use default currency.
+   *
    * @param $submittedValues
    *
    * @return mixed
    */
-  public function getCurrency($submittedValues) { // get current currency from DB or use default currency
+  public function getCurrency($submittedValues) {
     $config = CRM_Core_Config::singleton();
 
     $currentCurrency = CRM_Utils_Array::value('currency',
index eb1f5b304c69678341de62dedbde8bc15ee0ebc1..f604f3450553165957e04a582ef93de74335726b 100644 (file)
@@ -213,7 +213,8 @@ class CRM_Contribute_Form_UpdateSubscription extends CRM_Core_Form {
         // save the changes
         $result = CRM_Contribute_BAO_ContributionRecur::add($params);
         $status = ts('Recurring contribution has been updated to: %1, every %2 %3(s) for %4 installments.',
-                     array(1 => CRM_Utils_Money::format($params['amount'], $this->_subscriptionDetails->currency),
+                     array(
+                           1 => CRM_Utils_Money::format($params['amount'], $this->_subscriptionDetails->currency),
                            2 => $this->_subscriptionDetails->frequency_interval,
                            3 => $this->_subscriptionDetails->frequency_unit,
                            4 => $params['installments'],
index cd0d075c47889cb6f079022a4642b25d3873d607..d72310214e51231ad80706ced7250b5a17707cf0 100644 (file)
@@ -605,5 +605,6 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Contribute_Import_Pa
    *
    * @return void
    */
-  public function fini() {}
+  public function fini() {
+  }
 }
index 7c9e19068e3009ac9721233f81e05d0a509bd0be..efb46b1c823fb459315752f975186d7b6ba1815f 100644 (file)
@@ -308,7 +308,8 @@ ORDER BY parent_id, weight";
 
       // for each menu get their children
       $navigationTree[$navigation->id] = array(
-        'attributes' => array('label' => $label,
+        'attributes' => array(
+          'label' => $label,
           'name' => $navigation->name,
           'url' => $navigation->url,
           'permission' => $navigation->permission,
index 7b404bccd28d87526c006af09530f14c56199a12..ecfa4d9c72ef3814e7e3643ab30c8c1536f2266c 100644 (file)
@@ -102,7 +102,8 @@ AND    v.name = %3
       else {
         $value = CRM_Utils_System::relativeURL($value);
       }
-      $sqlParams = array(1 => array($value, 'String'),
+      $sqlParams = array(
+        1 => array($value, 'String'),
         2 => array($optionName, 'String'),
         3 => array($name, 'String'),
       );
index 09aa7085f5bea0164985fea797994934e0ce98aa..d1ddbb4253dc7b5231be2eedb25b79216631eee3 100644 (file)
@@ -64,9 +64,10 @@ WHERE  cacheKey     = %3 AND
        entity_table = 'civicrm_contact'
 ";
 
-      $params = array(1 => array($id1, 'Integer'),
-                2 => array($id2, 'Integer'),
-                3 => array($cacheKey, 'String'),
+      $params = array(
+        1 => array($id1, 'Integer'),
+        2 => array($id2, 'Integer'),
+        3 => array($cacheKey, 'String'),
       );
 
       $mergeId = CRM_Core_DAO::singleValueQuery($query, $params);
@@ -81,8 +82,9 @@ WHERE  cacheKey     = %3 AND
         $where = " AND {$where}";
 
       }
-      $p = array(1 => array($mergeId, 'Integer'),
-           2 => array($cacheKey, 'String'),
+      $p = array(
+        1 => array($mergeId, 'Integer'),
+        2 => array($cacheKey, 'String'),
       );
       $sql       = "SELECT pn.id, pn.entity_id1, pn.entity_id2, pn.data FROM civicrm_prevnext_cache pn {$join} ";
       $wherePrev = " WHERE pn.id < %1 AND pn.cacheKey = %2 {$where} ORDER BY ID DESC LIMIT 1";
index 4fa3c4dc1d6df8cb4016c1bf90624836757e090f..9e03d4781120e1bd217f435f21cbc459d3e02558 100644 (file)
@@ -482,7 +482,8 @@ UPDATE civicrm_custom_field
 SET    text_length = %1
 WHERE  id = %2
 ";
-    $params = array(1 => array($length, 'Integer'),
+    $params = array(
+      1 => array($length, 'Integer'),
       2 => array($customFieldID, 'Integer'),
     );
     CRM_Core_DAO::executeQuery($sql, $params);
index af3cbf7bfe167a18789e393fbb206370044f1fe1..6dda26f4007f0e41870a7d20522c5e17ff0bf406 100644 (file)
@@ -1045,7 +1045,8 @@ WHERE  ( group_name = %1
 OR       group_name = %2 )
 AND domain_id = %3
 ";
-    $sqlParams = array(1 => array(self::DIRECTORY_PREFERENCES_NAME, 'String'),
+    $sqlParams = array(
+      1 => array(self::DIRECTORY_PREFERENCES_NAME, 'String'),
       2 => array(self::URL_PREFERENCES_NAME, 'String'),
       3 => array(CRM_Core_Config::domainID(), 'Integer'),
     );
index 10276f0236317872bdbff131dc0a4fe8d5c334d8..79def54a8025d74ac5993db16b32aa6a5b23fa4a 100644 (file)
@@ -573,7 +573,8 @@ class CRM_Core_I18n_Schema {
       }
 
       $sql = implode(' ', $trigger);
-      $info[] = array('table' => array($table),
+      $info[] = array(
+        'table' => array($table),
         'when' => 'BEFORE',
         'event' => array('UPDATE'),
         'sql' => $sql,
@@ -602,7 +603,8 @@ class CRM_Core_I18n_Schema {
       }
 
       $sql = implode(' ', $trigger);
-      $info[] = array('table' => array($table),
+      $info[] = array(
+        'table' => array($table),
         'when' => 'BEFORE',
         'event' => array('INSERT'),
         'sql' => $sql,
index f14be3e03b5770e89e93a062ffd936399e7fa005..dc9dd9a542cbb171f6c5a8e31de4e7d4d420aab3 100644 (file)
@@ -183,8 +183,7 @@ class CRM_Core_I18n_SchemaStructure_4_2_alpha1 {
   /**
    * @return array
    */
-  public static function &indices()
-  {
+  public static function &indices() {
     static $result = NULL;
     if (!$result) {
       $result = array(
@@ -225,8 +224,7 @@ class CRM_Core_I18n_SchemaStructure_4_2_alpha1 {
   /**
    * @return array
    */
-  public static function &tables()
-  {
+  public static function &tables() {
     static $result = NULL;
     if (!$result) {
       $result = array_keys(self::columns());
index f5838ef2265495b2627d9749aecb2093b6b5cd96..b376a521b9d67bbe3111f82586f16f6dff5d0455 100644 (file)
@@ -35,8 +35,7 @@ class CRM_Core_I18n_SchemaStructure_4_3_1 {
   /**
    * @return array
    */
-  public static function &columns()
-  {
+  public static function &columns() {
     static $result = NULL;
     if (!$result) {
       $result = array(
@@ -189,8 +188,7 @@ class CRM_Core_I18n_SchemaStructure_4_3_1 {
   /**
    * @return array
    */
-  public static function &indices()
-  {
+  public static function &indices() {
     static $result = NULL;
     if (!$result) {
       $result = array(
@@ -231,8 +229,7 @@ class CRM_Core_I18n_SchemaStructure_4_3_1 {
   /**
    * @return array
    */
-  public static function &tables()
-  {
+  public static function &tables() {
     static $result = NULL;
     if (!$result) {
       $result = array_keys(self::columns());
index 8b336156db298f539a4b08ed72acf8bd3b4b9f3d..586fd0de931bda8067158f1e1519c6c9d21a0a98 100644 (file)
@@ -189,8 +189,7 @@ class CRM_Core_I18n_SchemaStructure_4_5_alpha1 {
   /**
    * @return array
    */
-  public static function &indices()
-  {
+  public static function &indices() {
     static $result = NULL;
     if (!$result) {
       $result = array(
@@ -231,8 +230,7 @@ class CRM_Core_I18n_SchemaStructure_4_5_alpha1 {
   /**
    * @return array
    */
-  public static function &tables()
-  {
+  public static function &tables() {
     static $result = NULL;
     if (!$result) {
       $result = array_keys(self::columns());
index df8b61c2ec91f1ffaca6b01180580ba6898f04e8..f9a91ad68eb19a42d489ae6568df60312bc30a6d 100644 (file)
@@ -186,8 +186,7 @@ class CRM_Core_I18n_SchemaStructure_4_5_beta2 {
     }
     return $result;
   }
-  public static function &indices()
-  {
+  public static function &indices() {
     static $result = NULL;
     if (!$result) {
       $result = array(
@@ -224,8 +223,7 @@ class CRM_Core_I18n_SchemaStructure_4_5_beta2 {
     }
     return $result;
   }
-  public static function &tables()
-  {
+  public static function &tables() {
     static $result = NULL;
     if (!$result) {
       $result = array_keys(self::columns());
index e9755e071f61d0c8646a24997d200fa8528ec12d..c6d5944b29d67e88d1577fbc62ab5ff9b44d7c28 100644 (file)
@@ -98,7 +98,8 @@ class CRM_Core_JobManager {
    *
    * @param void
    */
-  public function __destruct() {}
+  public function __destruct() {
+  }
 
   /**
    * @param $entity
index b625a61c740c809dce4fec578ba6e02bf20bf50c..d871b37d17784e523e3970f7f9bc5c7291a809de 100644 (file)
@@ -16,8 +16,7 @@
  *
  * @return string
  */
-function smarty_block_crmRegion($params, $content, &$smarty, &$repeat)
-{
+function smarty_block_crmRegion($params, $content, &$smarty, &$repeat) {
   if ($repeat) {
     return;
   }
index 4f3004024dd36196e40c4e17e6f1b980688dbb47..d901357cf488c16a8f36f7479e2d02fb44c9479a 100644 (file)
@@ -862,7 +862,8 @@ WHERE  v.option_group_id = g.id
     }
 
     $participantFields = CRM_Event_DAO_Participant::fields();
-    $participantParams = array('id' => CRM_Utils_Array::value('participant_id', $params),
+    $participantParams = array(
+      'id' => CRM_Utils_Array::value('participant_id', $params),
       'contact_id' => $contactID,
       'event_id' => $form->_eventId ? $form->_eventId : $params['event_id'],
       'status_id' => CRM_Utils_Array::value('participant_status',
index a8a69f2d18aad37263aa4479b1debe879a763f77..95e10de7666750d2633fdb474169ddccebfe6f4f 100644 (file)
@@ -241,7 +241,8 @@ class CRM_Event_Form_Registration_ThankYou extends CRM_Event_Form_Registration {
    *
    * @return void
    */
-  public function postProcess() {}
+  public function postProcess() {
+  }
 
   /**
    * Return a descriptive name for the page, used in wizard header
index 3f6312759fcfdc09914deb88f6a388103e5a79c2..1cdb4b31898585aeb455a8cf2b0faba88b3b0cdb 100644 (file)
@@ -355,7 +355,8 @@ class CRM_Event_Form_Search extends CRM_Core_Form_Search {
    * @return void
    * @see valid_date
    */
-  public function addRules() {}
+  public function addRules() {
+  }
 
   /**
    * Set the default form values
index e52e6c5dafba353ef478e70a1f4977222d444d53..24a3b4c79c742d78f00adef6dbd1dabc3e224d10 100644 (file)
@@ -74,7 +74,8 @@ class CRM_Event_Form_Task_Delete extends CRM_Event_Form_Task {
    * @return void
    */
   public function buildQuickForm() {
-    $deleteParticipants = array(1 => ts('Delete this participant record along with associated participant record(s).'),
+    $deleteParticipants = array(
+      1 => ts('Delete this participant record along with associated participant record(s).'),
       2 => ts('Delete only this participant record.'),
     );
 
index 8773b3881c5870e2670f00ab1a1b2b7c3c8088e5..b9de5545094f54281655b82a7128e3c2537a609d 100644 (file)
@@ -506,5 +506,6 @@ class CRM_Event_Import_Parser_Participant extends CRM_Event_Import_Parser {
    *
    * @return void
    */
-  public function fini() {}
+  public function fini() {
+  }
 }
index 201017f9833a5475e8a34dfc67dab9d4ba45c606..f2a832bf738bd133ee9c3b01f33e58983bb9b06f 100644 (file)
@@ -86,7 +86,8 @@ class CRM_Event_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function getUserDashboardElement() {
-    return array('name' => ts('Events'),
+    return array(
+      'name' => ts('Events'),
       'title' => ts('Your Event(s)'),
       'perm' => array('register for events'),
       'weight' => 20,
@@ -98,7 +99,8 @@ class CRM_Event_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function registerTab() {
-    return array('title' => ts('Events'),
+    return array(
+      'title' => ts('Events'),
       'id' => 'participant',
       'url' => 'participant',
       'weight' => 40,
@@ -110,7 +112,8 @@ class CRM_Event_Info extends CRM_Core_Component_Info {
    * @return array
    */
   public function registerAdvancedSearchPane() {
-    return array('title' => ts('Events'),
+    return array(
+      'title' => ts('Events'),
       'weight' => 40,
     );
   }
@@ -121,7 +124,8 @@ class CRM_Event_Info extends CRM_Core_Component_Info {
    */
   public function getActivityTypes() {
     $types = array();
-    $types['Event'] = array('title' => ts('Event'),
+    $types['Event'] = array(
+      'title' => ts('Event'),
       'callback' => 'CRM_Event_Page_EventInfo::run()',
     );
     return $types;
index 72a73962e45af9a0affede42fd11cfaf14483b78..42a761cbed31daa145e121df29cfd32df271e18f 100644 (file)
@@ -214,10 +214,12 @@ class CRM_Event_Page_EventInfo extends CRM_Core_Page {
         }
       }
 
-      $center = array('lat' => (float ) $sumLat / count($locations),
+      $center = array(
+        'lat' => (float ) $sumLat / count($locations),
         'lng' => (float ) $sumLng / count($locations),
       );
-      $span = array('lat' => (float )($maxLat - $minLat),
+      $span = array(
+        'lat' => (float )($maxLat - $minLat),
         'lng' => (float )($maxLng - $minLng),
       );
       $this->assign_by_ref('center', $center);
@@ -310,7 +312,8 @@ class CRM_Event_Page_EventInfo extends CRM_Core_Page {
     $this->assign('allowRegistration', $allowRegistration);
 
     $session = CRM_Core_Session::singleton();
-    $params = array('contact_id' => $session->get('userID'),
+    $params = array(
+      'contact_id' => $session->get('userID'),
       'event_id' => CRM_Utils_Array::value('id', $values['event']),
       'role_id' => CRM_Utils_Array::value('default_role_id', $values['event']),
     );
index 82a5105208d41e0df51aaf50295f509a2e48afd6..f69d7070f01173bcd3fdcc6614a3392616996c15 100644 (file)
@@ -211,7 +211,8 @@ class CRM_Event_Page_ManageEvent extends CRM_Core_Page {
     }
 
     if (!$this->_isTemplate && $id) {
-      $breadCrumb = array(array('title' => ts('Manage Events'),
+      $breadCrumb = array(array(
+          'title' => ts('Manage Events'),
           'url' => CRM_Utils_System::url(CRM_Utils_System::currentPath(), 'reset=1'),
         ));
       CRM_Utils_System::appendBreadCrumb($breadCrumb);
index 91b1736c16c13be3859a57ce637ab74505226335..232d9a8dc72174a553792b297acb8855e6ce58f7 100644 (file)
@@ -72,13 +72,17 @@ class CRM_Logging_ReportDetail extends CRM_Report_Form {
     CRM_Utils_System::resetBreadCrumb();
     $breadcrumb =
       array(
-            array('title' => ts('Home'),
+            array(
+                  'title' => ts('Home'),
                   'url' => CRM_Utils_System::url()),
-            array('title' => ts('CiviCRM'),
+            array(
+                  'title' => ts('CiviCRM'),
                   'url' => CRM_Utils_System::url('civicrm', 'reset=1')),
-            array('title' => ts('View Contact'),
+            array(
+                  'title' => ts('View Contact'),
                   'url' => CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$this->cid}")),
-            array('title' => ts('Search Results'),
+            array(
+                  'title' => ts('Search Results'),
                   'url' => CRM_Utils_System::url('civicrm/contact/search', "force=1")),
             );
     CRM_Utils_System::appendBreadCrumb($breadcrumb);
@@ -114,7 +118,8 @@ class CRM_Logging_ReportDetail extends CRM_Report_Form {
   /**
    * @param bool $applyLimit
    */
-  public function buildQuery($applyLimit = TRUE) {}
+  public function buildQuery($applyLimit = TRUE) {
+  }
 
   /**
    * @param $sql
index fec0d400d610eb248d180517f2bc2567fb9b824a..d84e51caa791be065fcc82cd066978ba127a06d9 100644 (file)
@@ -435,7 +435,8 @@ class CRM_Mailing_Selector_Event extends CRM_Core_Selector_Base implements CRM_C
    * @return string
    *   name of the file
    */
-  public function getExportFileName($output = 'csv') {}
+  public function getExportFileName($output = 'csv') {
+  }
 
   public function eventToTitle() {
     static $events = NULL;
index 595f84ca518d8f7bbce359e55f449679ba8acdc7..242b2ba7bbb0749d9e792e8e61881e294b37cc80 100644 (file)
@@ -334,7 +334,8 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
 
         $element = &$qf->add('text', $elementName, $label,
                    array_merge($extra,
-                     array('price' => json_encode(array($optionKey, $priceVal)),
+                     array(
+                       'price' => json_encode(array($optionKey, $priceVal)),
                        'size' => '4',
                      )
                    ),
@@ -395,7 +396,8 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
           $count = CRM_Utils_Array::value('count', $opt, '');
           $max_value = CRM_Utils_Array::value('max_value', $opt, '');
           $priceVal = implode($seperator, array($opt[$valueFieldName] + $taxAmount, $count, $max_value));
-          $extra = array('price' => json_encode(array($elementName, $priceVal)),
+          $extra = array(
+                   'price' => json_encode(array($elementName, $priceVal)),
                    'data-amount' => $opt[$valueFieldName],
                    'data-currency' => $currencyName,
           );
@@ -530,7 +532,8 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField {
           }
           $priceVal = implode($seperator, array($opt[$valueFieldName] + $taxAmount, $count, $max_value));
           $check[$opId] = &$qf->createElement('checkbox', $opt['id'], NULL, $opt['label'],
-            array('price' => json_encode(array($opt['id'], $priceVal)),
+            array(
+             'price' => json_encode(array($opt['id'], $priceVal)),
              'data-amount' => $opt[$valueFieldName],
              'data-currency' => $currencyName,
             )
index a14f65b511523242d90793f2462e5dbee2883ce1..5b0b66af951c58c6c1e9c35ba3f0df037bb0fedb 100644 (file)
@@ -166,7 +166,8 @@ class CRM_SMS_Form_Group extends CRM_Contact_Form_Task {
     $this->addFormRule(array('CRM_SMS_Form_Group', 'formRule'));
 
     $buttons = array(
-      array('type' => 'next',
+      array(
+        'type' => 'next',
         'name' => ts('Next'),
         'spacing' => '&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;',
         'isDefault' => TRUE,
index b1e5bc3da7f328d874ef307c0bc91a1530db47ae..96a55bd12a10c3b874915e778ab6e8495761f1bf 100644 (file)
@@ -83,7 +83,8 @@ class CRM_SMS_Form_Schedule extends CRM_Core_Form {
     $this->addFormRule(array('CRM_SMS_Form_Schedule', 'formRule'), $this);
 
     $buttons = array(
-      array('type' => 'back',
+      array(
+        'type' => 'back',
         'name' => ts('Previous'),
       ),
       array(
index 23fae2b5b5854acddda54a48ca7fa29799261711..95b0842057ce06d64e1098cfd7c24de58d49821c 100644 (file)
@@ -170,7 +170,8 @@ class CRM_SMS_Form_Upload extends CRM_Core_Form {
     $this->addFormRule(array('CRM_SMS_Form_Upload', 'formRule'), $this);
 
     $buttons = array(
-      array('type' => 'back',
+      array(
+        'type' => 'back',
         'name' => ts('Previous'),
       ),
       array(
@@ -314,7 +315,8 @@ class CRM_SMS_Form_Upload extends CRM_Core_Form {
     $mailing->find(TRUE);
 
     $session = CRM_Core_Session::singleton();
-    $values = array('contact_id' => $session->get('userID'),
+    $values = array(
+      'contact_id' => $session->get('userID'),
       'version' => 3,
     );
     require_once 'api/api.php';
index df8729ab81c41c732fbb1277f946f6e7f144186c..c8f8a9060da9bc5706ea7c7899401255b1d2da1a 100644 (file)
@@ -106,7 +106,8 @@ class CRM_SMS_Page_Provider extends CRM_Core_Page_Basic {
   public function run() {
     // set title and breadcrumb
     CRM_Utils_System::setTitle(ts('Settings - SMS Provider'));
-    $breadCrumb = array(array('title' => ts('SMS Provider'),
+    $breadCrumb = array(array(
+        'title' => ts('SMS Provider'),
         'url' => CRM_Utils_System::url('civicrm/admin/sms/provider',
           'reset=1'
         ),
index d5f536664bdf67bdbeac5f96f3d6758512bf54a5..d96f1dd9ce5a30d35906557d51994f9e742a020b 100644 (file)
@@ -316,8 +316,7 @@ function civicrm_api3_contact_delete($params) {
  * @throws API_Exception
  * @throws CiviCRM_API3_Exception
  */
-function _civicrm_api3_contact_check_params(&$params, $dupeCheck = TRUE, $dupeErrorArray = FALSE, $obsoletevalue = TRUE, $dedupeRuleGroupID = NULL)
-{
+function _civicrm_api3_contact_check_params(&$params, $dupeCheck = TRUE, $dupeErrorArray = FALSE, $obsoletevalue = TRUE, $dedupeRuleGroupID = NULL) {
 
   switch (strtolower(CRM_Utils_Array::value('contact_type', $params))) {
     case 'household':
index d091e64346ea5eec1b67cd0f9cae50f435504f25..3135ac2e0988498e73bb9bb75fae23d496aa7091 100755 (executable)
@@ -480,7 +480,8 @@ function civicrm_api3_mailing_send_test($params) {
       if (!$contactId) {
         //create new contact.
         $contact   = civicrm_api3('Contact', 'create',
-          array('contact_type' => 'Individual',
+          array(
+            'contact_type' => 'Individual',
             'email' => $email,
             'api.Email.get' => array('return' => 'id'),
           )
@@ -489,7 +490,8 @@ function civicrm_api3_mailing_send_test($params) {
         $emailId   = $contact['values'][$contactId]['api.Email.get']['id'];
       }
       civicrm_api3('MailingEventQueue', 'create',
-        array('job_id' => $job['id'],
+        array(
+          'job_id' => $job['id'],
           'email_id' => $emailId,
           'contact_id' => $contactId,
         )
index 8a7a9333599d023055a1132ac80326dc26e8386f..734ce89f05ce35944a66e7edd1fd783213285c12 100644 (file)
@@ -126,8 +126,7 @@ class CRM_Batch_Form_EntryTest extends CiviUnitTestCase {
    * Tears down the fixture, for example, closes a network connection.
    * This method is called after a test is executed.
    */
-  public function tearDown()
-  {
+  public function tearDown() {
     $this->quickCleanUpFinancialEntities();
     $this->relationshipTypeDelete($this->_relationshipTypeId);
     if ($this->callAPISuccessGetCount('membership', array('id' => $this->_membershipTypeID))) {
index 19a8e71f6840bfa02fc5912805c6981f3e7c00d4..e4fb4130fe3222d582a18c370de8a518374f8232 100644 (file)
@@ -141,8 +141,7 @@ class CRM_Contact_BAO_QueryTest extends CiviUnitTestCase {
    * We are retrieving primary here - checking the actual sql seems super prescriptive - but since the massive query object has
    * so few tests detecting any change seems good here :-)
    */
-  public function testSearchProfilePrimaryCityCRM14263()
-    {
+  public function testSearchProfilePrimaryCityCRM14263() {
     $contactID = $this->individualCreate();
     CRM_Core_Config::singleton()->defaultSearchProfileID = 1;
     $this->callAPISuccess('address', 'create', array('contact_id' => $contactID, 'city' => 'Cool City', 'location_type_id' => 1));