mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 11:12:20 +00:00
26 lines
509 B
PHP
Executable File
26 lines
509 B
PHP
Executable File
<?php
|
|
|
|
namespace App\ServerTypes;
|
|
|
|
interface ServerType
|
|
{
|
|
/**
|
|
* @param array<string, mixed> $input
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function createRules(array $input): array;
|
|
|
|
/**
|
|
* @param array<string, mixed> $input
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function data(array $input): array;
|
|
|
|
/**
|
|
* @param array<string, mixed> $input
|
|
*/
|
|
public function createServices(array $input): void;
|
|
|
|
public function install(): void;
|
|
}
|