From 0005ab01d90c45aea7faa3b31c2f47f912c45125 Mon Sep 17 00:00:00 2001 From: Niels Vanpachtenbeke <10651054+Nielsvanpach@users.noreply.github.com> Date: Mon, 6 Jan 2025 10:18:03 +0100 Subject: [PATCH] undo previous commit --- src/Config/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config/Config.php b/src/Config/Config.php index f6e80e02..8c426508 100644 --- a/src/Config/Config.php +++ b/src/Config/Config.php @@ -24,7 +24,7 @@ public static function rebind(): void /** @param array $data */ public static function fromArray(array $data): self { - $source = config('backup'); + $source = require dirname(__DIR__, 2) . '/config/backup.php'; return new self( backup: BackupConfig::fromArray(array_merge($source['backup'], $data['backup'] ?? [])),