13 lines
510 B
PHP
13 lines
510 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Equipment;
|
|
|
|
use App\Entities\Equipment\ServerPartEntity;
|
|
|
|
interface ServerPartInterface extends EquipmentInterface
|
|
{
|
|
public function setServerPart(ServerPartEntity $serverPartEntity, array $formDatas): ServerPartEntity;
|
|
public function changeServerPart(ServerPartEntity $oldServerPartEntity, ServerPartEntity $serverPartEntity, array $formDatas): ServerPartEntity;
|
|
public function unsetServerPart(ServerPartEntity $serverPartEntity, array $formDatas): ServerPartEntity;
|
|
}
|