/home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/Rest/Authy/V1
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/twilio/sdk/src/Twilio/Rest/Authy/V1/FormContext.php (1809B)
solution = array('formType' => $formType, );
$this->uri = '/Forms/' . \rawurlencode($formType) . '';
}
/**
* Fetch a FormInstance
*
* @return FormInstance Fetched FormInstance
* @throws TwilioException When an HTTP error occurs.
*/
public function fetch() {
$params = Values::of(array());
$payload = $this->version->fetch(
'GET',
$this->uri,
$params
);
return new FormInstance($this->version, $payload, $this->solution['formType']);
}
/**
* 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.Authy.V1.FormContext ' . \implode(' ', $context) . ']';
}
}