Comment fixes
authoreileen <emcnaughton@wikimedia.org>
Mon, 23 Jan 2017 23:39:51 +0000 (12:39 +1300)
committereileen <emcnaughton@wikimedia.org>
Mon, 23 Jan 2017 23:39:51 +0000 (12:39 +1300)
CRM/Campaign/BAO/Survey.php
CRM/Contact/BAO/Contact.php
CRM/Contact/Import/ImportJob.php
CRM/Core/DAO/permissions.php
CRM/Core/Payment/AuthorizeNetIPN.php
CRM/Core/Payment/PayPalImpl.php
CRM/Financial/BAO/FinancialType.php
CRM/Mailing/BAO/MailingJob.php
CRM/Mailing/Event/BAO/Reply.php
CRM/UF/Form/AdvanceSetting.php
CRM/UF/Page/Field.php

index b62f4f4949c0aa2c26ea0e2179390b9c230b2cdc..5b09731f9853147210245727a8ad1c24f9d9c066 100644 (file)
@@ -304,6 +304,8 @@ SELECT  survey.id    as id,
    *
    * @param string $returnColumn
    * @param bool $includePetitionActivityType
+   *
+   * @return string
    */
   public static function getSurveyActivityType($returnColumn = 'label', $includePetitionActivityType = FALSE) {
     static $activityTypes;
index 83b806927a63f973d747002bb29f90633616464d..e1f299cc63019348822013852926e8200d7904d5 100644 (file)
@@ -785,6 +785,7 @@ WHERE     civicrm_contact.id = " . CRM_Utils_Type::escape($id, 'Integer');
    *   Whether to actually restore, not delete.
    * @param bool $skipUndelete
    *   Whether to force contact delete or not.
+   * @param bool $checkPermissions
    *
    * @return bool
    *   Was contact deleted?
index 570aa2d7bd6c4ae57f19dc45d635dd2a86d92ba9..7c278e6380c65b0230ffb485a231c8541bf72be2 100644 (file)
@@ -342,9 +342,12 @@ class CRM_Contact_Import_ImportJob {
   }
 
   /**
-   * @param $contactIds
+   * Add imported contacts.
+   *
+   * @param array $contactIds
    * @param string $newGroupName
-   * @param $newGroupDesc
+   * @param string $newGroupDesc
+   * @param string $newGroupType
    *
    * @return array|bool
    */
index abfec760cde633a8438daab82f898f87122a8694..d42f29c6d5ae6a645077e9a29a13cfe6be672153 100644 (file)
@@ -201,7 +201,7 @@ function _civicrm_api3_permissions($entity, $action, &$params) {
     'get' => array('access CiviCRM'),
     'default' => array(
       // nested array = OR
-      array('administer CiviCampaign', 'manage campaign')
+      array('administer CiviCampaign', 'manage campaign'),
     ),
   );
   $permissions['survey'] = $permissions['campaign'];
index 0db1ed5e28a0c2306e40466aa5fa02789b3bb3f0..5933ff9a6d65d6dd1ad912497402196450ae7f4d 100644 (file)
@@ -58,8 +58,7 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
     $ids = $objects = $input = array();
 
     if ($x_subscription_id) {
-      //Approved
-
+      // Presence of the id means it is approved.
       $input['component'] = $component;
 
       // load post vars in $input
@@ -213,8 +212,10 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
   }
 
   /**
-   * @param $input
-   * @param $ids
+   * Get the input from passed in fields.
+   *
+   * @param array $input
+   * @param array $ids
    *
    * @return bool
    */
@@ -258,8 +259,12 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
   }
 
   /**
-   * @param $ids
-   * @param $input
+   * Get ids from input.
+   *
+   * @param array $ids
+   * @param array $input
+   *
+   * @throws \CRM_Core_Exception
    */
   public function getIDs(&$ids, &$input) {
     $ids['contact'] = $this->retrieve('x_cust_id', 'Integer', FALSE, 0);
@@ -298,8 +303,6 @@ INNER JOIN civicrm_contribution co ON co.contribution_recur_id = cr.id
       // FIXME: figure out fields for event
     }
     else {
-      // get the optional ids
-
       // Get membershipId. Join with membership payment table for additional checks
       $sql = "
     SELECT m.id
index b2dcc108fccb778f46d6bba20194169ec8b7d1b9..7e34d17283dbb60bb1cc5c55562c5509cb9dffb6 100644 (file)
@@ -191,6 +191,7 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment {
    *
    * @return array
    *   the result in an nice formatted array (or an error object)
+   * @throws \Civi\Payment\Exception\PaymentProcessorException
    */
   protected function setExpressCheckOut(&$params) {
     $args = array();
index c9b715d7cc077ab289c915f7270e0b073f06fac7..538b01ccd072594157c4d5dbae465d83c4c460c0 100644 (file)
@@ -370,6 +370,7 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
    *   the mode of operation, can be add, view, edit, delete
    * @param bool $force
    *
+   * @return bool
    */
   public static function checkPermissionedLineItems($id, $op, $force = TRUE) {
     if (!self::isACLFinancialTypeStatus()) {
index 99c38a741182489a88ab9c2fde89bb93e5ae2157..49d3fc5989d6a50594ee87023b30ead3f879636d 100644 (file)
@@ -55,9 +55,12 @@ class CRM_Mailing_BAO_MailingJob extends CRM_Mailing_DAO_MailingJob {
   }
 
   /**
+   * Create mailing job.
+   *
    * @param array $params
    *
-   * @return CRM_Mailing_BAO_MailingJob
+   * @return \CRM_Mailing_BAO_MailingJob
+   * @throws \CRM_Core_Exception
    */
   static public function create($params) {
     $job = new CRM_Mailing_BAO_MailingJob();
@@ -78,10 +81,12 @@ class CRM_Mailing_BAO_MailingJob extends CRM_Mailing_DAO_MailingJob {
   }
 
   /**
-   * Initiate all pending/ready jobs
+   * Initiate all pending/ready jobs.
    *
    * @param array $testParams
-   * @param null $mode
+   * @param string $mode
+   *
+   * @return bool|null
    */
   public static function runJobs($testParams = NULL, $mode = NULL) {
     $job = new CRM_Mailing_BAO_MailingJob();
index ed1cbc7ad5d67e0471619003af5b05c93ad316b7..4d6e874b5251f27c181d6e585511175012fe6122 100644 (file)
@@ -62,7 +62,6 @@ class CRM_Mailing_Event_BAO_Reply extends CRM_Mailing_Event_DAO_Reply {
    */
   public static function &reply($job_id, $queue_id, $hash, $replyto = NULL) {
     // First make sure there's a matching queue event.
-
     $q = CRM_Mailing_Event_BAO_Queue::verify($job_id, $queue_id, $hash);
 
     $success = NULL;
@@ -255,7 +254,6 @@ class CRM_Mailing_Event_BAO_Reply extends CRM_Mailing_Event_DAO_Reply {
     );
 
     // TODO: do we need reply tokens?
-
     $html = $component->body_html;
     if ($component->body_text) {
       $text = $component->body_text;
index 07c127e46445e77bcd910c395634a7106fb85206..28a6c62d30e519d2d57444a4d4a7203195290d01 100644 (file)
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2017
- * $Id$
- *
  */
 class CRM_UF_Form_AdvanceSetting extends CRM_UF_Form_Group {
 
   /**
-   * Build the form object for Advance Settings.
-   *
+   * Build the form object for Advanced Settings.
    *
    * @param CRM_Core_Form $form
-   *
-   * @return void
    */
   public static function buildAdvanceSetting(&$form) {
     // should mapping be enabled for this group
index 9c77c3335e5d7ffcb0e72cfcb7c70f5879092e49..e178e417cc2fc0d21da8028208c947f97a92cdd0 100644 (file)
@@ -29,8 +29,6 @@
  *
  * @package CRM
  * @copyright CiviCRM LLC (c) 2004-2017
- * $Id$
- *
  */
 
 /**