Pass along the data in a more logical format
This commit is contained in:
parent
2af653733c
commit
2eee6f35d4
2 changed files with 2 additions and 2 deletions
|
@ -101,7 +101,7 @@ class BuildModificationService
|
|||
'ip' => $server->allocation->ip,
|
||||
'port' => $server->allocation->port,
|
||||
],
|
||||
'mappings' => [$server->getAllocationMappings()],
|
||||
'mappings' => $server->getAllocationMappings(),
|
||||
],
|
||||
'build' => [
|
||||
'memory' => $server->memory,
|
||||
|
|
|
@ -97,7 +97,7 @@ class ServerConfigurationStructureService
|
|||
'ip' => $server->allocation->ip,
|
||||
'port' => $server->allocation->port,
|
||||
],
|
||||
'mappings' => [$server->getAllocationMappings()],
|
||||
'mappings' => $server->getAllocationMappings(),
|
||||
],
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue