INFRA-132 - Misc
authorTim Otten <totten@civicrm.org>
Tue, 20 Jan 2015 03:27:12 +0000 (19:27 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 20 Jan 2015 03:27:12 +0000 (19:27 -0800)
CRM/Core/Payment/PayPalImpl.php
CRM/Member/BAO/MembershipType.php
CRM/Profile/Selector/Listings.php
CRM/Report/Form/Activity.php
CRM/Report/Form/Event.php
api/v3/Generic/Setvalue.php
api/v3/LineItem.php
tests/phpunit/WebTest/Event/MultiprofileEventTest.php
tests/phpunit/WebTest/Report/RolePermissionReportTest.php
tests/phpunit/api/v3/SyntaxConformanceTest.php

index daa74f5c1bf6b1c57c4aa20b53e822c04c6e7cce..2ab4853b2a1c98c2068f04d722cdcb324efe205a 100644 (file)
@@ -774,7 +774,8 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment {
     return $result;
   }
 
-  /** This function will take NVPString and convert it to an Associative Array and it will decode the response.
+  /**
+   * This function will take NVPString and convert it to an Associative Array and it will decode the response.
    * It is usefull to search for a particular key and displaying arrays.
    * @nvpstr is NVPString.
    * @nvpArray is Associative Array.
index 8e2867eb408828e5fac35f336db284441fa70b24..b5f4dd3eec253cd27194d4d3f3b0da5db91cdf19 100644 (file)
@@ -752,7 +752,8 @@ class CRM_Member_BAO_MembershipType extends CRM_Member_DAO_MembershipType {
     }
   }
 
-  /**                                                                                                                                                                                                         * This function updates all price field value for quick config
+  /**
+   * This function updates all price field value for quick config
    * price set which has membership type
    *
    * @param  int $membershipTypeId membership type id
index 43db102dd5954329d2d46487762ed057c515e673..092b6a6da5d7621be5357e46dc3655369dcdee35 100644 (file)
@@ -795,5 +795,4 @@ class CRM_Profile_Selector_Listings extends CRM_Core_Selector_Base implements CR
     }
   } //func close
 
-
 }
index b7e165702d7969a43d54037ac01a1c0e42ceb340..1583964c24ae475dd4e62d410db54b8d4de81c06 100644 (file)
@@ -344,7 +344,8 @@ class CRM_Report_Form_Activity extends CRM_Report_Form {
     parent::__construct();
   }
 
-  /** adding address fields with dbAlias for order clause
+  /**
+   * Adding address fields with dbAlias for order clause.
    * @return array
    *   address fields
    */
index b5cc5d576fb17ef153abd6db2505f79afb2e5b11..7952b71aea9112b1dfaebe91805d66fb87386f57 100644 (file)
@@ -36,5 +36,4 @@ class CRM_Report_Form_Event extends CRM_Report_Form {
   // Nothing here.
   // FIXME: Do these reports really have nothing in common? Really?
 
-
 }
index ea92e2cdb7c3c38a04038478b6213e5869a4f3a1..e05a6cdca4f869fde0db17727cb76531b1016026 100644 (file)
@@ -67,7 +67,7 @@ function civicrm_api3_generic_setValue($apiRequest) {
       break;
 
     case CRM_Utils_Type::T_DATE:
-      $value = CRM_Utils_Type::escape($value, "Date", false);
+      $value = CRM_Utils_Type::escape($value, "Date", FALSE);
       if (!$value)
         return civicrm_api3_create_error("Param '$field' is not a date. format YYYYMMDD or YYYYMMDDHHMMSS");
       break;
index 2314d7edc95ed48404880c4bd28e512056f6bd47..e26cc62d434d3e90ae3168266ec6d37e2c4110ec 100644 (file)
@@ -47,7 +47,7 @@
  * {@getfields line_item_create}
  */
 function civicrm_api3_line_item_create($params) {
-  $params = CRM_Contribute_BAO_Contribution::checkTaxAmount($params, True);
+  $params = CRM_Contribute_BAO_Contribution::checkTaxAmount($params, TRUE);
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
index 191747681bb99f0dc3797f8b78aeaa7d0502c1ac..a3016cd94936e4e0073e48cfe2486bd41fd3b17d 100644 (file)
@@ -414,7 +414,7 @@ class WebTest_Event_MultiprofileEventTest extends CiviSeleniumTestCase {
   /**
    * Test profile creation.
    *
-*@param $profileField
+   * @param array $profileField
    * @param int $location
    * @param $type
    *
index 5f3cc5120ef7cb55ba70b62c3475adb7c4e7017a..6fd0311bd7bd432b025abeb6c868e612acda76ca 100644 (file)
@@ -96,7 +96,7 @@ class WebTest_Report_RolePermissionReportTest extends CiviSeleniumTestCase {
   }
 
   /**
-   *check for CRM-10148
+   * Check for CRM-10148.
    */
   public function testReservedReportPermission() {
     $this->webtestLogin('admin');
index 283fa859cacc421bbf7d14b3c1bbc52f95bc1500..fa549353d182f87aa37de66d822aca7ba0527b61 100644 (file)
@@ -47,12 +47,16 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
    */
   protected $deletableTestObjects;
 
-  /** This test case doesn't require DB reset */
+  /**
+   * This test case doesn't require DB reset.
+   */
   public $DBResetRequired = FALSE;
 
   protected $_entity;
 
-  /** Map custom group entities to civicrm components */
+  /**
+   * Map custom group entities to civicrm components.
+   */
   static $componentMap = array(
     'Contribution' => 'CiviContribute',
     'Membership' => 'CiviMember',
@@ -597,11 +601,11 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
     return $knownFailures[$entity][$key];
   }
 
-  /** testing the _get **/
+  /* ----- testing the _get  ----- */
 
   /**
    * @dataProvider toBeSkipped_get
-  entities that don't need a get action
+   *   Entities that don't need a get action
    * @param $Entity
    */
   public function testNotImplemented_get($Entity) {
@@ -1230,9 +1234,9 @@ class api_v3_SyntaxConformanceTest extends CiviUnitTestCase {
     $baoObj->free();
   }
 
-  /** testing the _getFields **/
+  /* ---- testing the _getFields ---- */
 
-  /** testing the _delete **/
+  /* ---- testing the _delete ---- */
 
   /**
    * @dataProvider toBeSkipped_delete