/home/desid573/public_html/hooks/twilio-php-master/Twilio/Rest/Wireless/V1
Edit: /home/desid573/public_html/hooks/twilio-php-master/Twilio/Rest/Wireless/V1/CommandContext.php (1616B)
solution = array('sid' => $sid, );
$this->uri = '/Commands/' . rawurlencode($sid) . '';
}
/**
* Fetch a CommandInstance
*
* @return CommandInstance Fetched CommandInstance
*/
public function fetch() {
$params = Values::of(array());
$payload = $this->version->fetch(
'GET',
$this->uri,
$params
);
return new CommandInstance($this->version, $payload, $this->solution['sid']);
}
/**
* Provide a friendly representation
*
* @return string Machine friendly representation
*/
public function __toString() {
$context = array();
foreach ($this->solution as $key => $value) {
$context[] = "$key=$value";
}
return '[Twilio.Wireless.V1.CommandContext ' . implode(' ', $context) . ']';
}
}