11 lines
248 B
PHP
11 lines
248 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Equipment;
|
|
|
|
use App\Entities\Equipment\ServerEntity;
|
|
|
|
interface ServerInterface extends EquipmentInterface
|
|
{
|
|
public function setServer(string $action, ServerEntity $serverEntity, array $formDatas): ServerEntity;
|
|
}
|