This never happened...

This commit is contained in:
notCharles 2024-06-20 16:15:56 -04:00
parent d6b71885ec
commit 42ca4e7fba
2 changed files with 1 additions and 2 deletions

View File

@ -164,7 +164,7 @@ class EggConfigurationService
// variable from the server configuration.
$plucked = Arr::get(
$structure,
preg_replace('/^env\./', 'build.environment.', $key),
preg_replace('/^env\./', 'server.environment.', $key),
''
);

View File

@ -23,7 +23,6 @@ class EggImporterService
'server.build.memory' => 'server.build.memory_limit',
'server.build.env.' => 'server.environment.',
'server.build.environment.' => 'server.environment.',
'env.' => 'server.environment.',
];
public function __construct(protected ConnectionInterface $connection)