From a18c7b9d6b3ec41fd21c927a22225b2e30e480c9 Mon Sep 17 00:00:00 2001 From: ping-yee <611077101@mail.nknu.edu.tw> Date: Wed, 14 Jun 2023 00:07:25 +0800 Subject: [PATCH 1/2] docs: replace mixed type at Config class. --- system/Config/BaseConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Config/BaseConfig.php b/system/Config/BaseConfig.php index 359fcc1488ba..8d41ffed0b10 100644 --- a/system/Config/BaseConfig.php +++ b/system/Config/BaseConfig.php @@ -86,7 +86,7 @@ public function __construct() /** * Initialization an environment-specific configuration setting * - * @param mixed $property + * @param array|bool|float|int|string $property * * @return void */ From 1d2eb6302ce0f6d2447ffb99c52e4ee3a2579328 Mon Sep 17 00:00:00 2001 From: ping-yee <611077101@mail.nknu.edu.tw> Date: Fri, 16 Jun 2023 00:06:46 +0800 Subject: [PATCH 2/2] docs: add type null. --- system/Config/BaseConfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Config/BaseConfig.php b/system/Config/BaseConfig.php index 8d41ffed0b10..300e9ffac5f9 100644 --- a/system/Config/BaseConfig.php +++ b/system/Config/BaseConfig.php @@ -86,7 +86,7 @@ public function __construct() /** * Initialization an environment-specific configuration setting * - * @param array|bool|float|int|string $property + * @param array|bool|float|int|string|null $property * * @return void */