You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* An optional SOAP timeout if you want to set a timeout independent of
106
-
* PHP's socket timeout.
101
+
* An optional SOAP timeout if you want to set a timeout independent of PHP's socket timeout.
107
102
*
108
103
* @var int
109
104
*/
@@ -182,7 +177,7 @@ public function __call($functionName, $arguments = null)
182
177
{
183
178
// Determine if we shoud be making an asynchronous call. If so strip
184
179
// "Async" from the end of the method name.
185
-
if (null === $this->_asyncResult) {
180
+
if ($this->_asyncResult === null) {
186
181
$this->_asynchronous = false;
187
182
$this->_asyncAction = null;
188
183
@@ -213,10 +208,9 @@ public function __call($functionName, $arguments = null)
213
208
/**
214
209
* Create a SoftLayer API SOAP Client.
215
210
*
216
-
* Retrieve a new SoapClient object for a specific SoftLayer API
217
-
* service using either the class' constants API_USER and API_KEY or a
218
-
* custom username and API key for authentication. Provide an optional id
219
-
* value if you wish to instantiate a particular SoftLayer API object.
211
+
* Retrieve a new SoapClient object for a specific SoftLayer API service using either the class'
212
+
* constants API_USER and API_KEY or a custom username and API key for authentication.
213
+
* Provide an optional id value if you wish to instantiate a particular SoftLayer API object.
220
214
*
221
215
* @param string $serviceName The name of the SoftLayer API service you wish to query
222
216
* @param int $id An optional object id if you're instantiating a particular SoftLayer API object. Setting an id defines this client's initialization parameter header.
@@ -226,8 +220,7 @@ public function __call($functionName, $arguments = null)
226
220
* @param bool $trace Enabled SOAP trace in the client object.
0 commit comments