13 lines
358 B
PHP
13 lines
358 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Equipment;
|
|
|
|
use App\Entities\Customer\ServiceEntity;
|
|
use App\Entities\Equipment\ServerEntity;
|
|
|
|
interface ServerInterface
|
|
{
|
|
public function attachToService(ServiceEntity $serviceEntity, string $serverinfo_uid, array $formDatas = []): ServerEntity;
|
|
public function detachFromService(string $serverinfo_uid): ServerEntity;
|
|
}
|