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