uri = $uri; $this->options = []; } /** * @return string */ public function getUri(): string { return $this->uri; } /** * @return array */ public function getOptions(): array { return $this->options; } /** * @param array $options * @return Request */ public function setOptions(array $options) { $this->options = array_replace($this->options, $options); return $this; } }