CRM-19958 Fix invalid name of variable subtype
[civicrm-core.git] / api / v3 / examples / Job / Delete.php
index 707a6c26341c223c42426537aff9d4eed1141657..fe854b3d274c35c704303403f3ba821ae0f18947 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Test Generated example of using job delete API.
+ * Test Generated example demonstrating the Job.delete API.
  *
  * @return array
  *   API result array
@@ -11,7 +11,7 @@ function job_delete_example() {
   );
 
   try{
-    $result = civicrm_api3('job', 'delete', $params);
+    $result = civicrm_api3('Job', 'delete', $params);
   }
   catch (CiviCRM_API3_Exception $e) {
     // Handle error here.
@@ -19,7 +19,8 @@ function job_delete_example() {
     $errorCode = $e->getErrorCode();
     $errorData = $e->getExtraParams();
     return array(
-      'error' => $errorMessage,
+      'is_error' => 1,
+      'error_message' => $errorMessage,
       'error_code' => $errorCode,
       'error_data' => $errorData,
     );
@@ -41,11 +42,10 @@ function job_delete_expectedresult() {
   return $expectedResult;
 }
 
-/**
+/*
 * This example has been generated from the API test suite.
-* The test that created it is called
-* testDelete
-* and can be found in
+* The test that created it is called "testDelete"
+* and can be found at:
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/JobTest.php
 *
 * You can see the outcome of the API tests at