From 42ca4e7fba6c06b1fdbbb74a803bb4f4b6fdf823 Mon Sep 17 00:00:00 2001 From: notCharles Date: Thu, 20 Jun 2024 16:15:56 -0400 Subject: [PATCH] This never happened... --- app/Services/Eggs/EggConfigurationService.php | 2 +- app/Services/Eggs/Sharing/EggImporterService.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Services/Eggs/EggConfigurationService.php b/app/Services/Eggs/EggConfigurationService.php index cfe458403..748b8f812 100644 --- a/app/Services/Eggs/EggConfigurationService.php +++ b/app/Services/Eggs/EggConfigurationService.php @@ -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), '' ); diff --git a/app/Services/Eggs/Sharing/EggImporterService.php b/app/Services/Eggs/Sharing/EggImporterService.php index c4fb27db9..1e85923d7 100644 --- a/app/Services/Eggs/Sharing/EggImporterService.php +++ b/app/Services/Eggs/Sharing/EggImporterService.php @@ -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)