Files
hestiacp/web/src/app/WebApp/InstallerInterface.php

11 lines
253 B
PHP
Raw Normal View History

2024-03-19 22:05:27 +03:00
<?php
declare(strict_types=1);
namespace Hestia\WebApp;
interface InstallerInterface {
public function install(array $options = null);
public function getDocRoot(string $append_relative_path = null): string;
public function withDatabase(): bool;
}