mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-17 17:01:37 +00:00
23 lines
438 B
PHP
Executable File
23 lines
438 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface SiteType
|
|
{
|
|
public function language(): string;
|
|
|
|
public function createValidationRules(array $input): array;
|
|
|
|
public function createFields(array $input): array;
|
|
|
|
public function data(array $input): array;
|
|
|
|
public function install(): void;
|
|
|
|
public function delete(): void;
|
|
|
|
public function editValidationRules(array $input): array;
|
|
|
|
public function edit(): void;
|
|
}
|