Merge pull request #7057 from davecivicrm/CRM-17271
[civicrm-core.git] / api / v3 / MembershipBlock.php
index 75f4c5e2e8b42d7c36ec3d6e56d64b8b587127d0..75aa09d753b819abfc54a1cd4639cdecfff665a7 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  */
 
 /**
- * This api exposes CiviCRM membership block.
+ * This api exposes CiviCRM MembershipBlock records.
  *
  * @package CiviCRM_APIv3
  */
 
 /**
- * API to Create or update a Membership Block.
+ * API to Create or update a MembershipBlock.
  *
  * @param array $params
- *   An associative array of name/value property values of civicrm_membership_block.
+ *   An associative array of name/value property values of MembershipBlock.
  *
  * @return array
- *   newly created or updated membership block property values.
+ *   API result array
  */
 function civicrm_api3_membership_block_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -68,7 +68,7 @@ function _civicrm_api3_membership_block_create_spec(&$params) {
  * {getfields MembershipBlock_get}
  *
  * @return array
- *   api result array of all found membership block property values.
+ *   API result array
  */
 function civicrm_api3_membership_block_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -83,7 +83,7 @@ function civicrm_api3_membership_block_get($params) {
  * @param array $params
  *
  * @return array
- *   api result array
+ *   API result array
  */
 function civicrm_api3_membership_block_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);