client = $client; $this->url = $url; } /** * Returns the segment write key. * * @return string */ public function fetch() { $response = $this->client->get($this->url); $body = json_decode($response->getBody()); return $body->segment_write_key; } }