mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
15 lines
265 B
PHP
Executable File
15 lines
265 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface ServerType
|
|
{
|
|
public function createValidationRules(array $input): array;
|
|
|
|
public function data(array $input): array;
|
|
|
|
public function createServices(array $input): void;
|
|
|
|
public function install(): void;
|
|
}
|