/home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Pricing/V1/Voice
Edit: /home/desid573/public_html/app/twilio-php-master/Twilio/Rest/Pricing/V1/Voice/NumberContext.php (1530B)
solution = array('number' => $number, );
$this->uri = '/Voice/Numbers/' . rawurlencode($number) . '';
}
/**
* Fetch a NumberInstance
*
* @return NumberInstance Fetched NumberInstance
*/
public function fetch() {
$params = Values::of(array());
$payload = $this->version->fetch(
'GET',
$this->uri,
$params
);
return new NumberInstance($this->version, $payload, $this->solution['number']);
}
/**
* 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.Pricing.V1.NumberContext ' . implode(' ', $context) . ']';
}
}