vito/app/ServerTypes/ServerType.php
2025-03-12 13:31:10 +01:00

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