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