/** * Returns the nodeinfo of the Gitea application. * * @return object|null * @since 3.2.0 **/ public function get(): ?object { // Build the request path. $path = "/nodeinfo"; // Send the get request. return $this->response->get( $this->http->get( $this->uri->get($path) ) ); }