gitea/src/7fb2cd98-a87d-4f48-9720-033.../code.power

19 lines
333 B
Plaintext

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