13 lines
324 B
PHP
13 lines
324 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Part;
|
|
|
|
use App\Entities\Equipment\ServerEntity;
|
|
use App\Entities\Part\SWITCHEntity;
|
|
|
|
interface SWITCHInterface
|
|
{
|
|
public function attachToServer(ServerEntity $serverEntity, array $formDatas = []): SWITCHEntity;
|
|
public function detachFromServer(ServerEntity $serverEntity): SWITCHEntity;
|
|
}
|