Daemon grammar

This commit is contained in:
Lance Pioch 2024-03-23 12:43:41 -04:00
parent b8b4750f46
commit 1ffc65897b
3 changed files with 2 additions and 3 deletions

View File

@ -31,7 +31,6 @@ class DaemonServerRepository extends DaemonRepository
} }
/** /**
* Creates a new server on the daemon daemon.
* *
* @throws \App\Exceptions\Http\Connection\DaemonConnectionException * @throws \App\Exceptions\Http\Connection\DaemonConnectionException
*/ */

View File

@ -84,7 +84,7 @@ class EggConfigurationService
$structure = $this->configurationStructureService->handle($server, [], true); $structure = $this->configurationStructureService->handle($server, [], true);
$response = []; $response = [];
// Normalize the output of the configuration for the new daemon Daemon to more // Normalize the output of the configuration for the new Daemon to more
// easily ingest, as well as make things more flexible down the road. // easily ingest, as well as make things more flexible down the road.
foreach ($configs as $file => $data) { foreach ($configs as $file => $data) {
// Try to head off any errors relating to parsing a set of configuration files // Try to head off any errors relating to parsing a set of configuration files

View File

@ -38,7 +38,7 @@ class ServerConfigurationStructureService
} }
/** /**
* Returns the new data format used for the daemon daemon. * Returns the new data format used for the daemon.
*/ */
protected function returnCurrentFormat(Server $server): array protected function returnCurrentFormat(Server $server): array
{ {