We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf49ded commit bb6496fCopy full SHA for bb6496f
example.php
@@ -66,7 +66,7 @@
66
*
67
* This example calls the getObject() method in the SoftLayer_Account API
68
* service. <http://sldn.softlayer.com/wiki/index.php/SoftLayer_Account::getObject>
69
- * It retrieved basic account information, and is a great way to test your API
+ * It retrieves basic account information, and is a great way to test your API
70
* account and connectivity.
71
*/
72
try {
@@ -96,6 +96,7 @@
96
// Retrieve the ticket record.
97
98
$ticket = $client->getObject();
99
+ print_r($ticket);
100
} catch (Exception $e) {
101
die('Unable to retrieve ticket record: ' . $e->getMessage());
102
}
0 commit comments