Merge pull request #4915 from eileenmcnaughton/minor-tidies
[civicrm-core.git] / api / v3 / AclRole.php
index 377691826bd2f1dc8749e7663e107baad4988cb8..26798697178f516a6b0eefa882e0efa00c97f713 100644 (file)
@@ -1,8 +1,7 @@
 <?php
-
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  * {@getfields acl_role_create}
  * @example acl_roleCreate.php
  *
- * @return array of newly created acl_role property values.
- * @access public
+ * @param array $params
+ *
+ * @return array
+ *   Array of newly created acl_role property values.
  */
 function civicrm_api3_acl_role_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -55,8 +56,10 @@ function civicrm_api3_acl_role_create($params) {
  * {@getfields acl_role_get}
  * @example acl_roleCreate.php
  *
- * @return array of retrieved acl_role property values.
- * @access public
+ * @param array $params
+ *
+ * @return array
+ *   Array of retrieved acl_role property values.
  */
 function civicrm_api3_acl_role_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -69,8 +72,10 @@ function civicrm_api3_acl_role_get($params) {
  * {@getfields acl_role_delete}
  * @example acl_roleCreate.php
  *
- * @return array of deleted values.
- * @access public
+ * @param array $params
+ *
+ * @return array
+ *   Array of deleted values.
  */
 function civicrm_api3_acl_role_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);