INFRA-132 - Fix misc oddball syntax
authorTim Otten <totten@civicrm.org>
Fri, 9 Jan 2015 03:53:23 +0000 (19:53 -0800)
committerTim Otten <totten@civicrm.org>
Fri, 9 Jan 2015 03:57:32 +0000 (19:57 -0800)
20 files changed:
Civi/Core/Transaction/Frame.php
Civi/Core/Transaction/Manager.php
api/v3/Generic.php
api/v3/GroupContact.php
api/v3/Job.php
api/v3/Mailing.php
api/v3/Membership.php
api/v3/MembershipPayment.php
api/v3/MembershipStatus.php
api/v3/Profile.php
api/v3/utils.php
install/template.css
tests/extensions/test.extension.manager.moduletest/moduletest.php
tests/phpunit/CRM/Batch/Form/EntryTest.php
tests/phpunit/CRM/Utils/API/ReloadOptionTest.php
tests/phpunit/CRM/Utils/HtmlToTextTest.php
tests/phpunit/CiviTest/civicrm.settings.dist.php
tests/phpunit/WebTest/Mailing/MailingTest.php
tests/phpunit/api/v3/SyntaxConformanceTest.php
tests/qunit/profile-editor/test.js

index 153ab5e683843ec82be0b0b1cf2e49d5c94f9a28..0bc95c0527d3ab30b3bae13464c850e8d2aca19a 100644 (file)
@@ -120,7 +120,7 @@ class Frame {
   }
 
   /**
-   * @param type $newState
+   * @param int $newState
    * @void
    */
   public function finish($newState = self::F_DONE) {
index 4efb1c0a54f0ab716130ff318caa1b8c2a445d58..f7ff620095188daaca57b74a246a25d9a3dd3829 100644 (file)
@@ -154,7 +154,7 @@ class Manager {
    */
   public function getBaseFrame() {
     if (empty($this->frames)) return NULL;
-    return $this->frames[count($this->frames)-1];
+    return $this->frames[count($this->frames) - 1];
   }
 
   /**
index 00ce07b107b65431c2d9c96ccb0e65d66d6904e7..ee41baa8a80ccab305cf2cb86beb98fa14f4afc0 100644 (file)
@@ -17,7 +17,7 @@
  *  - version: string
  *  - function: callback (mixed)
  *  - params: array, varies
- *  @return array API success object
+ * @return array API success object
  */
 function civicrm_api3_generic_getfields($apiRequest) {
   static $results = array();
index f6e5aa2b97512578459efeb4927864eaf65cbcc4..95a48a79ba617e5b0063089d0d07b491b85adc1d 100644 (file)
@@ -187,7 +187,7 @@ function _civicrm_api3_group_contact_common($params, $op = 'Added') {
   $tracking = CRM_Utils_Array::value('tracking', $params);
 
   if ($op == 'Added' || $op == 'Pending') {
-    $extraReturnValues= array(
+    $extraReturnValues = array(
       'total_count' => 0,
       'added' => 0,
       'not_added' => 0,
@@ -205,7 +205,7 @@ function _civicrm_api3_group_contact_common($params, $op = 'Added') {
     }
   }
   else {
-    $extraReturnValues= array(
+    $extraReturnValues = array(
       'total_count' => 0,
       'removed' => 0,
       'not_removed' => 0,
index 481e47f6efdb2f2fe137882d860ceefe524c5426..fff53bc31c8bd471ea846feaf39823e1672c4c01 100644 (file)
@@ -568,12 +568,12 @@ function civicrm_api3_job_run_payment_cron($params) {
  * @access public
  */
 function civicrm_api3_job_cleanup($params) {
-  $session   = CRM_Utils_Array::value('session'   , $params, true );
+  $session   = CRM_Utils_Array::value('session', $params, true );
   $tempTable = CRM_Utils_Array::value('tempTables', $params, true );
-  $jobLog    = CRM_Utils_Array::value('jobLog'    , $params, true );
-  $prevNext  = CRM_Utils_Array::value('prevNext'  , $params, true );
-  $dbCache   = CRM_Utils_Array::value('dbCache'   , $params, false);
-  $memCache  = CRM_Utils_Array::value('memCache'  , $params, false);
+  $jobLog    = CRM_Utils_Array::value('jobLog', $params, true );
+  $prevNext  = CRM_Utils_Array::value('prevNext', $params, true );
+  $dbCache   = CRM_Utils_Array::value('dbCache', $params, false);
+  $memCache  = CRM_Utils_Array::value('memCache', $params, false);
 
   if ($session || $tempTable || $prevNext) {
     CRM_Core_BAO_Cache::cleanup($session, $tempTable, $prevNext);
index a6029c757fd158209c339155bfcb26a32505be0a..f93f458adba3d24b9c0175e498116d101be51fa5 100755 (executable)
@@ -75,15 +75,15 @@ function civicrm_api3_mailing_get_token($params) {
 
   $tokens = CRM_Core_SelectValues::contactTokens();
   switch ($params['usage']) {
-    case 'Mailing' :
+    case 'Mailing':
       $tokens = array_merge(CRM_Core_SelectValues::mailingTokens(), $tokens);
       break;
-    case 'ScheduleEventReminder' :
+    case 'ScheduleEventReminder':
       $tokens = array_merge(CRM_Core_SelectValues::activityTokens(), $tokens);
       $tokens = array_merge(CRM_Core_SelectValues::eventTokens(), $tokens);
       $tokens = array_merge(CRM_Core_SelectValues::membershipTokens(), $tokens);
       break;
-    case 'ManageEventScheduleReminder' :
+    case 'ManageEventScheduleReminder':
       $tokens = array_merge(CRM_Core_SelectValues::eventTokens(), $tokens);
       break;
   }
index 742e4236eaa9b04a26d2b7af700cf651a4b1750b..180e78d9261f5be25441d96b54f1fbe816da7836 100644 (file)
@@ -182,7 +182,7 @@ function _civicrm_api3_membership_get_spec(&$params) {
  * This api will return the membership records for the contacts
  * having membership based on the relationship with the direct members.
  *
- * @param Array $params
+ * @param array $params
  *   Key/value pairs for contact_id and some.
  *          options affecting the desired results; has legacy support
  *          for just passing the contact_id itself as the argument
index 8111ade36be5bc265fa609e6f7c29dffba3ec991..bd1b8f90b8d1fca4f401e40da9d01fc9f0b63bd4 100644 (file)
@@ -71,7 +71,7 @@ function _civicrm_api3_membership_payment_create_spec(&$params) {
  *   Input parameters.
  *
  * @return array  array of properties, if error an array with an error id and error message
- *  @example MembershipPaymentGet
+ * @example MembershipPaymentGet
  * {@getfields MembershipPayment_get}
  * @access public
  */
index aa2646a1c42fbd17197f2a943d89026ecea48683..675773d644ec33b33f2e2e5ded824a13d3bc3eb7 100644 (file)
@@ -75,7 +75,7 @@ function civicrm_api3_membership_status_get($params) {
  * This api is used for updating an existing membership status.
  * Required parameters : id of a membership status
  *
- * @param Array $params
+ * @param array $params
  *   An associative array of name/value property values of civicrm_membership_status.
  * @deprecated - should just use create
  *
index ffa64e8b3abf525965e4f5347800f64c66632f0c..fb7489d242c63bf081d538a0fedc58e9c17de979 100644 (file)
@@ -486,9 +486,8 @@ function _civicrm_api3_profile_getbillingpseudoprofile(&$params) {
  *   0 = don't resolve, 1 = resolve non-aggressively, 2 = resolve aggressively - ie include country & state.
  * @param $is_flush
  *
- * @return
+ * @return array
  */
-
 function _civicrm_api3_buildprofile_submitfields($profileID, $optionsBehaviour = 1, $is_flush) {
   static $profileFields = array();
   if ($is_flush) {
index 70858805b227dc1af0494f38d778a54815859bbd..76d4fb15806e48c116c19e572c19b941cb882725 100644 (file)
@@ -446,7 +446,7 @@ function _civicrm_api3_store_values(&$fields, &$params, &$values) {
  * @param bool $getCount
  *   Are we just after the count.
  *
- * @return
+ * @return array
  */
 function _civicrm_api3_get_using_query_object($entity, $params, $additional_options = array(), $getCount = NULL) {
 
@@ -1125,7 +1125,7 @@ function formatCheckBoxField(&$checkboxFieldValue, $customFieldLabel, $entity) {
  *
  * @daoName string DAO to check params agains
  *
- * @return bool 
+ * @return bool
  *   Sshould the missing fields be returned as an array (core error created as default)
  *   true if all fields present, depending on $result a core error is created of an array of missing fields is returned
  * @access public
index bfe0394a2e23b250bdd089423ae4fb98b0148715..ec1e5ddace10de6b74a26dd109221b81366dae2c 100644 (file)
@@ -1,12 +1,12 @@
 body {
-  background: #EEE;
+  background: #eee;
 }
 #All {
   font-family: Arial, sans-serif;
   width: auto;
   margin: 0.5em auto;
   padding: 1em;
-  border: 1px #CCC solid;
+  border: 1px #ccc solid;
   border-radius: 10px;
   background: #fff;
   max-width: 1200px;
@@ -36,35 +36,35 @@ label span {
 }
 
 .testResults .error td {
-  background-color: #C00;
+  background-color: #c00;
   border: 1px #700 solid;
   color: white;
 }
 
 p.error {
   padding: 0.5em;
-  background-color: #C00;
+  background-color: #c00;
   border: 1px #700 solid;
   color: white;
   clear: both;
 }
 p.warning {
   padding: 0.5em;
-  background-color: #E70;
+  background-color: #e70;
   border: 1px #A70 solid;
   color: white;
   clear: both;
 }
 p.good {
   padding: 0.5em;
-  background-color: #0C0;
+  background-color: #0c0;
   border: 1px #070 solid;
   color: white;
   clear: both;
 }
 
 p.error a {
-  color: #CCF;
+  color: #ccf;
 }
 
 .testResults {
@@ -72,7 +72,7 @@ p.error a {
   font-size: 80%;
 }
 .testResults td {
-  border: 1px #CCC solid;
+  border: 1px #ccc solid;
   width: 400px;
   padding: 0.2em;
 }
index 5e92a003bcd502206b560bc97232249f3d858e25..908a4d37b31042f8490c0bd5a3f6bb6bf8c9c58b 100644 (file)
@@ -1,35 +1,35 @@
 <?php
 
 /**
- * Implemenation of hook_civicrm_install
+ * Implements hook_civicrm_install
  */
 function moduletest_civicrm_install() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'install');
 }
 
 /**
- * Implementation of hook_civicrm_postInstall
+ * Implements hook_civicrm_postInstall
  */
 function moduletest_civicrm_postInstall() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'postInstall');
 }
 
 /**
- * Implementation of hook_civicrm_uninstall
+ * Implements hook_civicrm_uninstall
  */
 function moduletest_civicrm_uninstall() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'uninstall');
 }
 
 /**
- * Implemenation of hook_civicrm_enable
+ * Implements hook_civicrm_enable
  */
 function moduletest_civicrm_enable() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'enable');
 }
 
 /**
- * Implemenation of hook_civicrm_disable
+ * Implements hook_civicrm_disable
  */
 function moduletest_civicrm_disable() {
   CRM_Extension_Manager_ModuleTest::incHookCount('moduletest', 'disable');
index 8f18575c4b86b1141179f5f549fb654df2548cf3..c19d8114510eae1d7f948b8b272a91f264e8b0d8 100644 (file)
@@ -165,7 +165,7 @@ class CRM_Batch_Form_EntryTest extends CiviUnitTestCase {
     $result = $this->callAPISuccess('contribution', 'get', array('return' => 'total_amount'));
     $this->assertEquals(3, $result['count']);
     foreach ($result['values'] as $contribution) {
-      $this-> assertEquals($this->callAPISuccess('line_item', 'getvalue', array(
+      $this->assertEquals($this->callAPISuccess('line_item', 'getvalue', array(
         'contribution_id' => $contribution['id'],
         'return' => 'line_total',
 
@@ -184,7 +184,7 @@ class CRM_Batch_Form_EntryTest extends CiviUnitTestCase {
     $result = $this->callAPISuccess('contribution', 'get', array('return' => 'total_amount'));
     $this->assertEquals(2, $result['count']);
     foreach ($result['values'] as $contribution) {
-      $this-> assertEquals($this->callAPISuccess('line_item', 'getvalue', array(
+      $this->assertEquals($this->callAPISuccess('line_item', 'getvalue', array(
        'contribution_id' => $contribution['id'],
        'return' => 'line_total',
 
index 9a22155784bfb523c32a4c0437270cee1d8ddf07..3540d2fa5597bb2a7abb2ea85df2beb88059137b 100644 (file)
@@ -87,7 +87,7 @@ class CRM_Utils_API_ReloadOptionTest extends CiviUnitTestCase {
   }
 
   /**
-   * Implementation of hook_civicrm_post used with all our test cases
+   * An implementation of hook_civicrm_post used with all our test cases.
    *
    * @param $op
    * @param string $objectName
index 8994ba77d5b1554953e394199a6710e2f418a76f..0e64445bc13dc9a52b5a09bf7e2c0338f749c610 100644 (file)
@@ -7,7 +7,7 @@ require_once 'CiviTest/CiviUnitTestCase.php';
  */
 class CRM_Utils_HtmlToTextTest extends CiviUnitTestCase {
   protected $_testInput = array(
-    '<br><p>' => '', // empty test
+    '<br/><p>' => '', // empty test
     '
 <p>
 This is a paragraph with <b>Bold</b> and <i>italics</i>
index e0647100cf8b2d3dfe8a3baf451d3a8f308d9546..24ed925dd3734d9fb0ab837da77e3bdd46f24ba0 100644 (file)
@@ -130,7 +130,8 @@ set_include_path($include_path);
 
 if (function_exists('variable_get') && variable_get('clean_url', '0') != '0') {
   define('CIVICRM_CLEANURL', 1);
-} else {
+}
+else {
   define('CIVICRM_CLEANURL', 0);
 }
 
index f70eeabb02851ed75b0cd3baa7f49f05e90ecf8a..f820f8accc473a2c8bb4a50242646a3867739437 100644 (file)
@@ -515,7 +515,7 @@ class WebTest_Mailing_MailingTest extends CiviSeleniumTestCase {
         else {
           $this->clickLink("xpath=//fieldset/legend[text()='Delivery Summary']/../table//tr[td/a[text()='{$key}']]/descendant::td[3]/span/a[2][text()='Advanced Search']");
         }
-        $this-> _verifyCriteria($key, $dataToCheck, $entity);
+        $this->_verifyCriteria($key, $dataToCheck, $entity);
       }
     }
   }
index d5c61f15a5ea8ce6e4525b6c7944a472d6f127da..b3d310cc4c64499aa07710ab23ed8a171df3cafc 100644 (file)
@@ -1262,7 +1262,7 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
       $this->assertTrue(is_integer($baoObj->id), 'check first id');
       $this->deletableTestObjects[$baoString][] = $baoObj->id;
       $baos[] = $baoObj;
-      $i ++;
+      $i++;
     }
     return $baos;
   }
index 0fcec95b6e6a63fa672343cd30f5dca17d83b61c..dbdcb766a7513e866d6e65bb21b3bfc40c7c5add 100644 (file)
@@ -41,7 +41,7 @@ var cases = [
 ];
 
 _.each(cases, function(caseDetails, caseIndex) {
-  test("#"+caseIndex+": With group_type="+caseDetails.group_type, function() {
+  test("#" + caseIndex + ": With group_type=" + caseDetails.group_type, function() {
     var ufGroupModel = new CRM.UF.UFGroupModel({
       group_type: caseDetails.group_type
     });