11 lines
255 B
PHP
11 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Equipment;
|
|
|
|
use App\Entities\Equipment\ServerPartEntity;
|
|
|
|
interface ServerPartInterface extends EquipmentInterFace
|
|
{
|
|
public function setServerPart(ServerPartEntity $serverPartEntity, mixed $uid, string $status): mixed;
|
|
}
|