. */ namespace SP\Core\Bootstrap; /** * Class UriContext */ interface UriContextInterface { /** * The full URL to reach the application (e.g. https://sub.example.com/syspass/) * * @return string */ public function getWebUri(): string; /** * The current request path relative to the application root (e.g. files/index.php) * * @return string */ public function getWebRoot(): string; public function getSubUri(): string; }