芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/vendor/twilio/sdk/src/Twilio/Rest/Preview/TrustedComms/CpsContext.php
solution = []; $this->uri = '/CPS'; } /** * Fetch the CpsInstance * * @param array|Options $options Optional Arguments * @return CpsInstance Fetched CpsInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(array $options = []): CpsInstance { $options = new Values($options); $headers = Values::of(['X-Xcnam-Sensitive-Phone-Number' => $options['xXcnamSensitivePhoneNumber'], ]); $payload = $this->version->fetch('GET', $this->uri, [], [], $headers); return new CpsInstance($this->version, $payload); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $context = []; foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Preview.TrustedComms.CpsContext ' . \implode(' ', $context) . ']'; } }