fix example tpl for code standards
authorEileen McNaughton <eileen@fuzion.co.nz>
Thu, 15 Jan 2015 00:59:02 +0000 (13:59 +1300)
committerEileen McNaughton <eileen@fuzion.co.nz>
Thu, 15 Jan 2015 00:59:02 +0000 (13:59 +1300)
tests/templates/documentFunction.tpl

index 217bb6ff279d357311142aa4d79cdb59c9181cf5..2cb738bf5cae3c0647b6a29dcf2c4cd545b12a8a 100644 (file)
@@ -1,41 +1,59 @@
 {literal}<?php{/literal}
 /**
- * Test Generated example of using {$fnPrefix} {$action} API
- *{if $description} {$description}{/if}
+ * @file
+ * Test Generated API Example.
+ * See bottom of this file for more detail.
+ */
+
+/**
+ * Test Generated example of using {$fnPrefix} {$action} API.
+ *
+{if $description}
+ * {$description}
+{/if}
  *
+ * @return array
+ *   API result array
  */
-function {$function}_example(){literal}{{/literal}
-$params = {$params|@print_array};
+function {$function}_example() {literal}{{/literal}
+  $params = {$params|@print_array};
 {literal}
-try{{/literal}
-  $result = civicrm_api3('{$fnPrefix}', '{$action}', $params);
-{literal}}
-catch (CiviCRM_API3_Exception $e) {
-  // handle error here
-  $errorMessage = $e->getMessage();
-  $errorCode = $e->getErrorCode();
-  $errorData = $e->getExtraParams();
-  return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
-}{/literal}
+  try{{/literal}
+    $result = civicrm_api3('{$fnPrefix}', '{$action}', $params);
+{literal}  }
+  catch (CiviCRM_API3_Exception $e) {
+    // Handle error here.
+    $errorMessage = $e->getMessage();
+    $errorCode = $e->getErrorCode();
+    $errorData = $e->getExtraParams();
+    return array(
+      'error' => $errorMessage,
+      'error_code' => $errorCode,
+      'error_data' => $errorData,
+    );
+  }{/literal}
 
-return $result;
+  return $result;
 {literal}}{/literal}
 
 /**
- * Function returns array of result expected from previous function
+ * Function returns array of result expected from previous function.
+ *
+ * @return array
+ *   API result array
  */
-function {$function}_expectedresult(){literal}{{/literal}
+function {$function}_expectedresult() {literal}{{/literal}
 
   $expectedResult = {$result|@print_array};
 
   return $expectedResult;
 {literal}}{/literal}
 
-
-/*
-* This example has been generated from the API test suite. The test that created it is called
-*
-* {$testfunction} and can be found in
+/**
+* This example has been generated from the API test suite.
+* The test that created it is called
+* {$testfunction}
+* and can be found in
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/{$filename}
 *
 * You can see the outcome of the API tests at