mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 09:51:37 +00:00
19 lines
425 B
PHP
19 lines
425 B
PHP
<?php
|
|
|
|
namespace App\SSH\Services\AddOnServices;
|
|
|
|
use App\SSH\Services\ServiceInterface;
|
|
|
|
abstract class AbstractAddOnService implements ServiceInterface
|
|
{
|
|
abstract public function creationRules(array $input): array;
|
|
|
|
abstract public function creationData(array $input): array;
|
|
|
|
abstract public function create(): void;
|
|
|
|
abstract public function delete(): void;
|
|
|
|
abstract public function data(): array;
|
|
}
|