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