mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 10:51:36 +00:00
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
23 lines
430 B
PHP
Executable File
23 lines
430 B
PHP
Executable File
<?php
|
|
|
|
namespace App\SiteTypes;
|
|
|
|
interface SiteType
|
|
{
|
|
public function language(): string;
|
|
|
|
public function supportedFeatures(): array;
|
|
|
|
public function createRules(array $input): array;
|
|
|
|
public function createFields(array $input): array;
|
|
|
|
public function data(array $input): array;
|
|
|
|
public function install(): void;
|
|
|
|
public function editRules(array $input): array;
|
|
|
|
public function edit(): void;
|
|
}
|