From cc146efd2ae7f090edfe75a4f81b0d50779ea98f Mon Sep 17 00:00:00 2001 From: Kurtis Holsapple Date: Wed, 7 May 2025 20:57:14 -0700 Subject: [PATCH] better singleton instance --- .../open-function-computers-llc/rad-theme-engine/src/Site.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php index 1d62639..4ece89a 100644 --- a/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php +++ b/vendor/open-function-computers-llc/rad-theme-engine/src/Site.php @@ -29,7 +29,7 @@ class Site return self::$instance; } - private function __construct($config = []) + private function __construct(array $config) { if ($config == [] && file_exists(TEMPLATEPATH . "/config.php")) { $config = include(TEMPLATEPATH . "/config.php");