gitea/src/5ca71a00-7b44-4c0d-9955-3af.../code.power

19 lines
332 B
Plaintext

/**
* Get instance's global settings for API.
*
* @return object|null
* @since 3.2.0
**/
public function get(): ?object
{
// Build the request path.
$path = "/settings/api";
// Send the get request.
return $this->response->get(
$this->http->get(
$this->uri->get($path)
)
);
}