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