server creation wip

This commit is contained in:
2025-03-28 17:10:36 +00:00
parent 7d2bc3ca5e
commit 350cf6e240
16 changed files with 3180 additions and 30 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace App\Data\ServerProviders;
class CreatedServer
{
public function __construct(
public string $name,
public string $rootPassword,
public string $id,
public string $status,
public string $ipv4,
public string $ipv6,
) {}
}

View File

@@ -7,7 +7,7 @@ class ServerType
/**
* @param string $name The name of the server type
* @param int $cores The number of cores
* @param int $memory The amount of memory in MB
* @param int $memory The amount of memory in GB
* @param int $disk The amount of disk space in GB
*/
public function __construct(