13 lines
365 B
PHP
13 lines
365 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Equipment;
|
|
|
|
use App\Entities\Equipment\ServerEntity;
|
|
|
|
interface ServerInterface extends EquipmentInterface
|
|
{
|
|
public function createServer(ServerEntity $serverEntity): ServerEntity;
|
|
public function modifyServer(ServerEntity $serverEntity): ServerEntity;
|
|
public function deleteServer(ServerEntity $serverEntity): ServerEntity;
|
|
}
|