gitea/src/0367ac44-18d6-495d-beae-315.../code.power

19 lines
330 B
Plaintext

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