芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/joolsmen.com/vendor/twilio/sdk/src/Twilio/Rest/Authy/V1/FormContext.php
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) . ']'; } }