a few comment fixes
authorEileen McNaughton <eileen@fuzion.co.nz>
Tue, 3 Mar 2015 21:44:16 +0000 (08:44 +1100)
committerEileen McNaughton <eileen@fuzion.co.nz>
Tue, 3 Mar 2015 21:44:16 +0000 (08:44 +1100)
CRM/Case/Controller/Search.php
CRM/Core/BAO/CustomField.php
CRM/Core/Payment/GoogleIPN.php
CRM/Grant/Controller/Search.php
CRM/Import/DataSource/SQL.php
CRM/Member/Controller/Search.php
Civi/Core/Resolver.php
api/v3/utils.php
tests/phpunit/api/v3/ContributionTest.php

index c9dda84e6fc98764fdf24d0cf6b9a43d59145701..3239a4c19919e128186a6ff663d14e3c36618e8d 100644 (file)
@@ -48,6 +48,10 @@ class CRM_Case_Controller_Search extends CRM_Core_Controller {
 
   /**
    * Class constructor.
+   *
+   * @param string $title
+   * @param bool|int $action
+   * @param bool $modal
    */
   public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
 
index 17b461639c7fdea7010d5f95ba51f45573ff316e..b869dc34e7cc1ada95eb50f7efcd54220715877a 100644 (file)
@@ -2358,6 +2358,10 @@ WHERE      ( f.label = %1 OR f.name = %1 )
 
   /**
    * Given ID of a custom field, return its name as well as the name of the custom group it belongs to.
+   *
+   * @param array $ids
+   *
+   * @return array
    */
   public static function getNameFromID($ids) {
     if (is_array($ids)) {
index 05805c6791269d2b9212b0aff29d33d597bfe27b..dffaba07eab57302351f81ea70802ff28e845e44 100644 (file)
@@ -516,6 +516,8 @@ WHERE  contribution_recur_id = {$ids['contributionRecur']}
   /**
    * This method is handles the response that will be invoked (from extern/googleNotify) every time
    * a notification or request is sent by the Google Server.
+   *
+   * @param string $xml_response
    */
   public static function main($xml_response) {
     require_once 'Google/library/googleresponse.php';
index ebb415c375cdb48cd32ea8c7e982ff495cb161e1..450975678ba31bfad313852f75bf8eb7e0a3856a 100644 (file)
@@ -48,6 +48,10 @@ class CRM_Grant_Controller_Search extends CRM_Core_Controller {
 
   /**
    * Class constructor.
+   *
+   * @param string $title
+   * @param bool|int $action
+   * @param bool $modal
    */
   public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
 
index 886b54cb68b59c5800fddea309fc125297dbae68..17dfaa8aa24f424a26cbfa796a83cc89dbeafd4c 100644 (file)
@@ -46,6 +46,8 @@ class CRM_Import_DataSource_SQL extends CRM_Import_DataSource {
 
   /**
    * Set variables up before form is built.
+   *
+   * @param CRM_Core_Form $form
    */
   public function preProcess(&$form) {
   }
index ac64c676e326654e363bf6403c782c1d16560f9d..bc9c319cbcff0dcaef07a8bbd2bf7695115f9a3d 100644 (file)
@@ -48,6 +48,10 @@ class CRM_Member_Controller_Search extends CRM_Core_Controller {
 
   /**
    * Class constructor.
+   *
+   * @param string $title
+   * @param bool|int $action
+   * @param bool $modal
    */
   public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
 
index bf3845f8d6cdedf8a7e2e5436ae417dc18320684..0d332fe36d1d9e6f41cc072f2c6157f96625e35b 100644 (file)
@@ -184,11 +184,15 @@ class ResolverApi {
   }
 
   /**
+   * Create placeholders.
+   *
+   * @param string $prefix
    * @param array $args
    *   Positional arguments.
+   *
    * @return array
    *   Named placeholders based on the positional arguments
-   *   (e.g. "@1" => "firstValue").
+   * (e.g. "@1" => "firstValue").
    */
   protected function createPlaceholders($prefix, $args) {
     $result = array();
index 8c053187a42dae298536f4949a6f20307df4d5c0..802a93174b6e3cbb2c5fdc9deec1ca328e05e25e 100644 (file)
@@ -1847,7 +1847,7 @@ function _civicrm_api_get_custom_fields($entity, &$params) {
 /**
  * Translate the custom field data_type attribute into a std 'type'.
  *
- * @param $dataType
+ * @param array $value
  *
  * @return int
  */
index a83084d4c320bb15367a712617c9568b68b6608d..0295ec5376912dde004e064924552fe6d4ae570a 100644 (file)
@@ -1661,7 +1661,7 @@ class api_v3_ContributionTest extends CiviUnitTestCase {
    *
    * @param array $params
    * @param int $id
-   * @param bool int $delete
+   * @param bool $delete
    */
   public function contributionGetnCheck($params, $id, $delete = TRUE) {