Merge pull request #3356 from eileenmcnaughton/tests
[civicrm-core.git] / api / v3 / File.php
index a5766a97be653cf75249bdd6af08aff693c5b800..2098de66f39f62eb9f598a7b04691b8e277134b5 100644 (file)
@@ -95,14 +95,14 @@ function civicrm_api3_file_get($params) {
  * Update an existing file
  *
  * This api is used for updating an existing file.
- * Required parrmeters : id of a file
+ * Required parameters : id of a file
  *
- * @param  Array   $params  an associative array of name/value property values of civicrm_file
+ * @param  Array   $params an array of name/value property values of civicrm_file
  *
  * @return array of updated file object property values
  * @access public
  */
-function &civicrm_api3_file_update($params) {
+function civicrm_api3_file_update($params) {
 
   if (!isset($params['id'])) {
     return civicrm_api3_create_error('Required parameter missing');
@@ -128,11 +128,12 @@ function &civicrm_api3_file_update($params) {
  * This API is used for deleting a file
  * Required parameters : id of a file
  *
- * @param  Int  $fileId  Id of the file to be deleted
+ * @param $params
+ *
+ * @internal param Int $fileId Id of the file to be deleted
  *
  * @return null if successfull, object of CRM_Core_Error otherwise
  * @access public
-
  */
 function civicrm_api3_file_delete($params) {