13 lines
446 B
PHP
13 lines
446 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Equipment;
|
|
|
|
use App\Entities\Equipment\ServerEntity;
|
|
|
|
interface ServerInterface extends EquipmentInterface
|
|
{
|
|
public function setServer(ServerEntity $serverEntity, array $formDatas): ServerEntity;
|
|
public function changeServer(ServerEntity $oldServerEntity, ServerEntity $serverEntity, array $formDatas): ServerEntity;
|
|
public function unsetServer(ServerEntity $serverEntity, array $formDatas): ServerEntity;
|
|
}
|