path = $path; $this->request = $request; $this->content = $content; return $this; } /** * Returns the request path made by the client. * * @return array */ public function getPath (): array { return $this->path; } /** * Returns the request type made by the client. * * @return string */ public function get_request (): string { return $this->request; } /** * Returns the information that is built from outside the request path. * * @return array */ public function getContent (): array { return $this->content; } }