Files
hestiacp/web/src/app/WebApp/InstallerInterface.php
Alexey Berezhok 346a50856b Initial
2024-03-19 22:05:27 +03:00

11 lines
253 B
PHP

<?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;
}