芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/vendor/twilio/sdk/src/Twilio/Rest/Monitor/V1/EventContext.php
solution = ['sid' => $sid, ]; $this->uri = '/Events/' . \rawurlencode($sid) . ''; } /** * Fetch the EventInstance * * @return EventInstance Fetched EventInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): EventInstance { $payload = $this->version->fetch('GET', $this->uri); return new EventInstance($this->version, $payload, $this->solution['sid']); } /** * 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.Monitor.V1.EventContext ' . \implode(' ', $context) . ']'; } }