|
9 | 9 | class ServerDataDTO |
10 | 10 | { |
11 | 11 | public function __construct( |
12 | | - public Server $server, |
13 | | - public ServerPermissionCollection $serverPermissions, |
14 | | - public ServerDetailsDTO $serverDetails, |
15 | 12 | public array $pterodactylServer, |
16 | | - public array $dockerImages, |
17 | | - public ?array $pterodactylClientServer, |
18 | | - public ?array $pterodactylClientAccount, |
19 | | - public array $productEggConfiguration, |
20 | | - public ?array $availableNestEggs, |
21 | | - public bool $hasConfigurableOptions, |
22 | | - public bool $hasConfigurableVariables, |
23 | | - public ServerVariableCollection $serverVariables, |
24 | | - public array $serverBackups, |
25 | | - public array $allocatedPorts, |
26 | | - public array $subusers, |
27 | | - public array $activityLogs, |
28 | | - public array $serverSchedules, |
| 13 | + public bool $isInstalling, |
| 14 | + public ?Server $server = null, |
| 15 | + public ?ServerPermissionCollection $serverPermissions = null, |
| 16 | + public ?ServerDetailsDTO $serverDetails = null, |
| 17 | + public ?array $dockerImages = null, |
| 18 | + public ?array $pterodactylClientServer = null, |
| 19 | + public ?array $pterodactylClientAccount = null, |
| 20 | + public ?array $productEggConfiguration = null, |
| 21 | + public ?array $availableNestEggs = null, |
| 22 | + public bool $hasConfigurableOptions = false, |
| 23 | + public bool $hasConfigurableVariables = false, |
| 24 | + public ?ServerVariableCollection $serverVariables = null, |
| 25 | + public ?array $serverBackups = null, |
| 26 | + public ?array $allocatedPorts = null, |
| 27 | + public ?array $subusers = null, |
| 28 | + public ?array $activityLogs = null, |
| 29 | + public ?array $serverSchedules = null, |
29 | 30 | ) |
30 | 31 | { |
31 | 32 | } |
|
0 commit comments