comment fixes
authorEileen McNaughton <eileen@fuzion.co.nz>
Mon, 2 Feb 2015 02:57:11 +0000 (15:57 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Mon, 2 Feb 2015 02:57:11 +0000 (15:57 +1300)
CRM/Core/InnoDBIndexer.php
CRM/Core/Payment/PaymentExpress.php
CRM/Event/Cart/BAO/EventInCart.php
CRM/Event/Form/Registration/Confirm.php
CRM/Event/Import/Controller.php
CRM/Event/StateMachine/Search.php
CRM/Export/BAO/Export.php
CRM/Grant/StateMachine/Search.php
CRM/Group/Controller.php
CRM/PCP/Form/PCPAccount.php

index 7751aa5632b14ee641896c66bf604ca04d60527c..c677414a6d91492dbfb67601170105f9b781b0c3 100644 (file)
@@ -127,7 +127,6 @@ class CRM_Core_InnoDBIndexer {
    * we have a static list of tables.
    */
   public function fixSchemaDifferences() {
-    //
     foreach ($this->indices as $tableName => $ign) {
       $todoSqls = $this->reconcileIndexSqls($tableName);
       foreach ($todoSqls as $todoSql) {
@@ -137,7 +136,7 @@ class CRM_Core_InnoDBIndexer {
   }
 
   /**
-   * Determine if an index is expected to exist
+   * Determine if an index is expected to exist.
    *
    * @param string $table
    * @param array $fields
@@ -198,6 +197,7 @@ class CRM_Core_InnoDBIndexer {
    * FTS index.
    *
    * @param $table
+   *
    * @return array
    *   (string $indexName => string $sql)
    */
@@ -213,9 +213,10 @@ class CRM_Core_InnoDBIndexer {
   }
 
   /**
-   * Generate a "DROP INDEX" statement for each existing FTS index
+   * Generate a "DROP INDEX" statement for each existing FTS index.
    *
    * @param string $table
+   *
    * @return array
    *   (string $idxName => string $sql)
    */
@@ -232,7 +233,8 @@ class CRM_Core_InnoDBIndexer {
    * Construct a set of SQL statements which will create (or preserve)
    * required indices and destroy unneeded indices.
    *
-   * @param $table
+   * @param string $table
+   *
    * @return array
    */
   public function reconcileIndexSqls($table) {
@@ -260,7 +262,7 @@ class CRM_Core_InnoDBIndexer {
   }
 
   /**
-   * Put the indices into a normalized format
+   * Put the indices into a normalized format.
    *
    * @param $indices
    * @return array
@@ -277,6 +279,8 @@ class CRM_Core_InnoDBIndexer {
   }
 
   /**
+   * Setter for isActive.
+   *
    * @param bool $isActive
    */
   public function setActive($isActive) {
@@ -284,6 +288,8 @@ class CRM_Core_InnoDBIndexer {
   }
 
   /**
+   * Getter for isActive.
+   *
    * @return bool
    */
   public function getActive() {
index ad7244aab7aa72437bfbccc136a46999b4c2dd40..0aba51b29e4777db47bb73386d5aea5a4ec622b0 100644 (file)
@@ -128,8 +128,6 @@ class CRM_Core_Payment_PaymentExpress extends CRM_Core_Payment {
    *
    * @param array $params
    *   Assoc array of input parameters for this transaction.
-   *
-   * @return array|void
    */
   public function doDirectPayment(&$params) {
     CRM_Core_Error::fatal(ts('This function is not implemented'));
index 26d5721b745499918cd5c1a2fe045c55309509dc..457b12dcac28f632e6bafd34602c320e4810af97 100644 (file)
@@ -11,12 +11,15 @@ class CRM_Event_Cart_BAO_EventInCart extends CRM_Event_Cart_DAO_EventInCart impl
   public $participants = array();
 
   /**
+   * Class constructor.
    */
   public function __construct() {
     parent::__construct();
   }
 
   /**
+   * Add participant to cart.
+   *
    * @param $participant
    */
   public function add_participant($participant) {
@@ -66,7 +69,7 @@ class CRM_Event_Cart_BAO_EventInCart extends CRM_Event_Cart_DAO_EventInCart impl
     foreach (array_keys($contacts_to_delete) as $contact_id) {
       CRM_Contact_BAO_Contact::deleteContact($contact_id);
     }
-    parent::delete();
+    return parent::delete();
   }
 
   /**
index 0d087a8051da3f5551bad01b9d7a3eebc43cd50b..89b83cda247266ec74be4ce135241b856e3df330 100644 (file)
@@ -393,6 +393,13 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration {
     $this->addFormRule(array('CRM_Event_Form_Registration_Confirm', 'formRule'), $this);
   }
 
+  /**
+   * @param $fields
+   * @param $files
+   * @param $self
+   *
+   * @return array|bool
+   */
   public static function formRule($fields, $files, $self) {
     $errors = array();
     $eventFull = CRM_Event_BAO_Participant::eventFull($self->_eventId, FALSE, CRM_Utils_Array::value('has_waitlist', $self->_values['event']));
index 8ed7be39f9f4a614fc0f122fd1a467284ace4064..3917f4e6ad9f0323a9a8c50a4c79376f4c7bc6d2 100644 (file)
@@ -36,6 +36,10 @@ class CRM_Event_Import_Controller extends CRM_Core_Controller {
 
   /**
    * Class constructor
+   *
+   * @param null $title
+   * @param bool|int $action
+   * @param bool $modal
    */
   public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
     parent::__construct($title, $modal);
index 89e56c6a49f2d069b93cedcccdbc6f9efb1dd440..0df32088fc9531c8ee1f4f4b96bf80b615b14c26 100644 (file)
@@ -43,6 +43,9 @@ class CRM_Event_StateMachine_Search extends CRM_Core_StateMachine {
 
   /**
    * Class constructor
+   *
+   * @param object $controller
+   * @param \const|int $action
    */
   public function __construct($controller, $action = CRM_Core_Action::NONE) {
     parent::__construct($controller, $action);
index d991ee3b01603b6da9ffa4f287e717a0db2fee45..e01ec0eba8b6a2679310c0fa1683db635ef7fac8 100644 (file)
@@ -1958,6 +1958,9 @@ LIMIT $offset, $limit
 
   /**
    * Manipulate header rows for relationship fields
+   *
+   * @param $headerRows
+   * @param $contactRelationshipTypes
    */
   public static function manipulateHeaderRows(&$headerRows, $contactRelationshipTypes) {
     foreach ($headerRows as & $header) {
@@ -1972,6 +1975,10 @@ LIMIT $offset, $limit
   /**
    * Exclude contacts who are deceased, have "Do not mail" privacy setting,
    * or have no street address
+   * @param $exportTempTable
+   * @param $headerRows
+   * @param $sqlColumns
+   * @param $exportParams
    */
   public static function postalMailingFormat($exportTempTable, &$headerRows, &$sqlColumns, $exportParams) {
     $whereClause = array();
index 6e6a596110cfd7e7a3b080d89e013092ba15bf4a..ba2c64548a82208b4f0e6d3dc81e46bd6d6ec036 100644 (file)
@@ -43,6 +43,9 @@ class CRM_Grant_StateMachine_Search extends CRM_Core_StateMachine {
 
   /**
    * Class constructor
+   *
+   * @param object $controller
+   * @param \const|int $action
    */
   public function __construct($controller, $action = CRM_Core_Action::NONE) {
     parent::__construct($controller, $action);
index 657ca23dc032692aac47965cd0a3c1b1fab0ed5e..d84a32dfed4bc21ad8701c00d1bc3e84afb6adbc 100644 (file)
@@ -36,6 +36,10 @@ class CRM_Group_Controller extends CRM_Core_Controller {
 
   /**
    * Class constructor
+   *
+   * @param null $title
+   * @param bool|int $action
+   * @param bool $modal
    */
   public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
     parent::__construct($title, $modal);
index 1621a3375fd335f2e07a8c555bcafedbb8704a80..08f96e744003fd5e99881a6ae5b8cde207a7c414 100644 (file)
  */
 
 /**
- * This class generates form components for processing a ontribution
- *
+ * This class generates form components for processing a contribution.
  */
 class CRM_PCP_Form_PCPAccount extends CRM_Core_Form {
 
   /**
    * Variable defined for Contribution Page Id
    */
-
   public $_pageId = NULL;
   public $_id = NULL;
   public $_component = NULL;