From eb1a95225ff3684437655318830550caee1fee71 Mon Sep 17 00:00:00 2001 From: Paulo Esteves Date: Tue, 26 Sep 2023 22:14:43 +0100 Subject: [PATCH] fix: Services::request() should call AppServices instead static --- system/Config/Services.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Config/Services.php b/system/Config/Services.php index 10972bd84ff0..5ffb9e049c46 100644 --- a/system/Config/Services.php +++ b/system/Config/Services.php @@ -521,7 +521,7 @@ public static function request(?App $config = null, bool $getShared = true) } // @TODO remove the following code for backward compatibility - return static::incomingrequest($config, $getShared); + return AppServices::incomingrequest($config, $getShared); } /**