a few mre comment block fixes
authorEileen McNaughton <eileen@fuzion.co.nz>
Tue, 13 Jan 2015 01:28:30 +0000 (14:28 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Tue, 13 Jan 2015 01:28:30 +0000 (14:28 +1300)
12 files changed:
CRM/Core/Smarty/plugins/compiler.continue.php
Civi/API/Provider/AdhocProvider.php
Civi/API/Provider/MagicFunctionProvider.php
Civi/API/Provider/ReflectionProvider.php
Civi/API/Subscriber/APIv3SchemaAdapter.php
Civi/API/Subscriber/ChainSubscriber.php
Civi/API/Subscriber/I18nSubscriber.php
Civi/CiUtil/PHPUnitScanner.php
Civi/Core/Transaction/Frame.php
sql/GenerateData.php
sql/GenerateReportData.php
tests/phpunit/CiviTest/CiviUnitTestCase.php

index 2c4b202110ba10028fade4ca232f1b31956bbbce..90e369a30f23765eb1813865189406a19a0cb972 100644 (file)
@@ -2,6 +2,9 @@
 
 /**
  * Skip remaining logic in the current iteration of a loop.
+ * @param $contents
+ * @param $smarty
+ * @return string
  */
 function smarty_compiler_continue($contents, &$smarty) {
   return 'continue;';
index 7bb62be87ffd173c69cbc0b5c670acda2d2e4694..e6147c12c224ee6197e964c15d968fabb163e422 100644 (file)
@@ -124,6 +124,8 @@ class AdhocProvider implements EventSubscriberInterface, ProviderInterface {
 
   /**
    * {inheritdoc}
+   * @param array $apiRequest
+   * @return array|mixed
    */
   public function invoke($apiRequest) {
     return call_user_func($this->actions[strtolower($apiRequest['action'])]['callback'], $apiRequest);
@@ -131,6 +133,8 @@ class AdhocProvider implements EventSubscriberInterface, ProviderInterface {
 
   /**
    * {inheritdoc}
+   * @param int $version
+   * @return array
    */
   public function getEntityNames($version) {
     return array($this->entity);
@@ -138,6 +142,9 @@ class AdhocProvider implements EventSubscriberInterface, ProviderInterface {
 
   /**
    * {inheritdoc}
+   * @param int $version
+   * @param string $entity
+   * @return array
    */
   public function getActionNames($version, $entity) {
     if ($version == $this->version && $entity == $this->entity) {
index 8dd97a6289d1cee9aa1777a15eb85e4ebad627c3..81772020b4c28cc9115e1d7f74792b6e04efaa31 100644 (file)
@@ -74,6 +74,8 @@ class MagicFunctionProvider implements EventSubscriberInterface, ProviderInterfa
 
   /**
    * {inheritdoc}
+   * @param array $apiRequest
+   * @return array
    */
   public function invoke($apiRequest) {
     $function = $apiRequest['function'];
@@ -91,6 +93,8 @@ class MagicFunctionProvider implements EventSubscriberInterface, ProviderInterfa
 
   /**
    * {inheritdoc}
+   * @param int $version
+   * @return array
    */
   public function getEntityNames($version) {
     $entities = array();
@@ -131,6 +135,9 @@ class MagicFunctionProvider implements EventSubscriberInterface, ProviderInterfa
 
   /**
    * {inheritdoc}
+   * @param int $version
+   * @param string $entity
+   * @return array
    */
   public function getActionNames($version, $entity) {
     $entity = _civicrm_api_get_camel_name($entity);
index c6cecdec3d6e3eb944d10131c742aabf403c9cf8..b865f9d0580adedf2e09f3eb8845129cc262f993 100644 (file)
@@ -108,6 +108,9 @@ class ReflectionProvider implements EventSubscriberInterface, ProviderInterface
 
   /**
    * {inheritdoc}
+   * @param array $apiRequest
+   * @return array
+   * @throws \API_Exception
    */
   public function invoke($apiRequest) {
     if (strtolower($apiRequest['entity']) == 'entity' && $apiRequest['action'] == 'get') {
@@ -129,6 +132,8 @@ class ReflectionProvider implements EventSubscriberInterface, ProviderInterface
 
   /**
    * {inheritdoc}
+   * @param int $version
+   * @return array
    */
   public function getEntityNames($version) {
     return array('Entity');
@@ -136,6 +141,9 @@ class ReflectionProvider implements EventSubscriberInterface, ProviderInterface
 
   /**
    * {inheritdoc}
+   * @param int $version
+   * @param string $entity
+   * @return array
    */
   public function getActionNames($version, $entity) {
     $entity = _civicrm_api_get_camel_name($entity, $version);
index 8d252762153f7f549da3a36c99ad3fd30c58d13b..4c615913c4260339ad67c39fbe6abc861bdd323a 100644 (file)
@@ -92,6 +92,8 @@ class APIv3SchemaAdapter implements EventSubscriberInterface {
 
   /**
    * Return array of defaults for the given API (function is a wrapper on getfields).
+   * @param $fields
+   * @return array
    */
   public function getDefaults($fields) {
     $defaults = array();
@@ -106,6 +108,8 @@ class APIv3SchemaAdapter implements EventSubscriberInterface {
 
   /**
    * Return array of required fields for the given API (function is a wrapper on getfields).
+   * @param $fields
+   * @return array
    */
   public function getRequired($fields) {
     $required = array('version');
index 651229e67ba6ead5a69730753fd2ed1478cee01a..947371d0f6c7c9d73dc6d0276a44ae4227e3e397 100644 (file)
@@ -78,6 +78,12 @@ class ChainSubscriber implements EventSubscriberInterface {
    * Call any nested api calls
    *
    * TODO: We don't really need this to be a separate function.
+   * @param $params
+   * @param $result
+   * @param $action
+   * @param $entity
+   * @param $version
+   * @throws \Exception
    */
   protected function callNestedApi(&$params, &$result, $action, $entity, $version) {
     $entity = _civicrm_api_get_entity_name_from_camel($entity);
index 2f11eb88dd6c7b32a26b11a741a6801508bef33e..2aba5693ff685f7588cad488b4c569d2fa84d37c 100644 (file)
@@ -63,6 +63,8 @@ class I18nSubscriber implements EventSubscriberInterface {
    * Sets the tsLocale and dbLocale for multi-lingual sites.
    * Some code duplication from CRM/Core/BAO/ConfigSetting.php retrieve()
    * to avoid regressions from refactoring.
+   * @param $lcMessagesRequest
+   * @throws \API_Exception
    */
   public function setLocale($lcMessagesRequest) {
     // We must validate whether the locale is valid, otherwise setting a bad
index d534bc7e2f00380407527567393a46b86644fac0..61534bf5357c45f2f5132e0e9ddc69b87733470c 100644 (file)
@@ -8,7 +8,8 @@ use Symfony\Component\Finder\Finder;
  */
 class PHPUnitScanner {
   /**
-   * @return array<string> class names
+   * @param $path
+   * @return array <string> class names
    */
   public static function _findTestClasses($path) {
 //    print_r(array(
@@ -27,8 +28,10 @@ class PHPUnitScanner {
   }
 
   /**
-   * @return array
-   *   (string $file => string $class)
+   * @param $paths
+   * @return array (string $file => string $class)
+   * (string $file => string $class)
+   * @throws \Exception
    */
   public static function findTestClasses($paths) {
     $testClasses = array();
index ea0a8b9e7d9c3247ecdd9adfd6ca656c6b10403c..d07de48e672ec9a1fe57026ac258eb9b3f9547ad 100644 (file)
@@ -162,6 +162,7 @@ class Frame {
    *   A PHP callback.
    * @param array|NULL $params Optional values to pass to callback.
    *          See php manual call_user_func_array for details.
+   * @param null $id
    */
   public function addCallback($phase, $callback, $params = NULL, $id = NULL) {
     if ($id) {
index cb50417ede2c1b523d8d7d53921f3a10df148927..cc97eb9677103a17b2e8d8144b918dbe3879b190 100644 (file)
@@ -147,6 +147,7 @@ class CRM_GCD {
   /**
    * Public wrapper for calling private "add" functions
    * Provides user feedback
+   * @param $itemName
    */
   public function generate($itemName) {
     echo "Generating $itemName\n";
@@ -260,7 +261,10 @@ class CRM_GCD {
 
   /*********************************
    * private methods
-   *********************************/
+   ********************************
+   * @param int $size
+   * @return string
+   */
 
   // get a randomly generated string
   private function randomString($size = 32) {
@@ -388,6 +392,9 @@ class CRM_GCD {
 
   /**
    * Automatically manage the is_primary field by tracking which contacts have each item
+   * @param $cid
+   * @param $type
+   * @return int
    */
   private function isPrimary($cid, $type) {
     if (empty($this->location[$type][$cid])) {
@@ -400,6 +407,9 @@ class CRM_GCD {
   /**
    * Execute a query unless we are doing a dry run
    * Note: this wrapper should not be used for SELECT queries
+   * @param $query
+   * @param array $params
+   * @return \CRM_Core_DAO
    */
   private function _query($query, $params = array()) {
     if (self::ADD_TO_DB) {
@@ -409,6 +419,7 @@ class CRM_GCD {
 
   /**
    * Call dao insert method unless we are doing a dry run
+   * @param $dao
    */
   private function _insert(&$dao) {
     if (self::ADD_TO_DB) {
@@ -422,6 +433,7 @@ class CRM_GCD {
 
   /**
    * Call dao update method unless we are doing a dry run
+   * @param $dao
    */
   private function _update(&$dao) {
     if (self::ADD_TO_DB) {
@@ -435,6 +447,8 @@ class CRM_GCD {
 
   /**
    * Add core DAO object
+   * @param $type
+   * @param $params
    */
   private function _addDAO($type, $params) {
     $daoName = "CRM_Core_DAO_$type";
@@ -450,6 +464,8 @@ class CRM_GCD {
 
   /**
    * Fetch contact type based on stored mapping
+   * @param $id
+   * @return
    */
   private function getContactType($id) {
     foreach (array('Individual', 'Household', 'Organization') as $type) {
index fd73ea0cd1a4362c53a8225fd21cbcf7d6c1c808..265acfa94b34ac8d1f5b03d3a57707339c18c8a3 100644 (file)
@@ -240,7 +240,10 @@ class CRM_GCD {
 
   /*********************************
    * private methods
-   *********************************/
+   ********************************
+   * @param int $size
+   * @return string
+   */
 
   // get a randomly generated string
   private function _getRandomString($size = 32) {
index 04299f181fe84622584945baedccb29224e7ffe1..e16a0232d0cd67ff385833f4d8970310d3ffc98f 100755 (executable)
@@ -1850,9 +1850,10 @@ class CiviUnitTestCase extends PHPUnit_Extensions_Database_TestCase {
    *
    * @params array to add group
    *
-   * @param array $params
-   * @return int
-   *   groupId of created group
+   * @param int $groupID
+   * @param int $totalCount
+   * @return int groupId of created group
+   * groupId of created group
    */
   public function groupContactCreate($groupID, $totalCount = 10) {
     $params = array('group_id' => $groupID);