From f3b7e539987843d2fa6e3a8358d57d71d8f68f27 Mon Sep 17 00:00:00 2001 From: Tan Nguyen Date: Mon, 9 Oct 2023 22:37:27 +0700 Subject: [PATCH] fix method inheritance --- src/Models/Setting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Models/Setting.php b/src/Models/Setting.php index 3789242..bce7fe8 100644 --- a/src/Models/Setting.php +++ b/src/Models/Setting.php @@ -41,7 +41,7 @@ public function getSettingFile(): string * * @return void */ - private function setSettingConfig(): void + public function setSettingConfig(): void { $json = file_get_contents($this->settingFile); $this->settings = json_decode($json, true);