12 lines
303 B
PHP
12 lines
303 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Equipment;
|
|
|
|
use App\Entities\Equipment\ServerPartEntity;
|
|
|
|
interface ServerPartInterface extends EquipmentInterface
|
|
{
|
|
public function setServerPart(ServerPartEntity $serverPartEntity): void;
|
|
public function unsetServerPart(ServerPartEntity $serverPartEntity): void;
|
|
}
|