Fix setters

This commit is contained in:
Cooper Dalrymple
2026-06-18 12:32:36 -05:00
parent f8e5bd4e3f
commit f8bf6e40ca
+3 -3
View File
@@ -4,7 +4,7 @@
* @author cleverogre
* @copyright 2026 CleverOgre
* @license GLP-3.0-or-later
* @version 1.2.1
* @version 1.2.3
* @since 1.0.0
*/
@@ -122,7 +122,7 @@ final class Settings {
}
public static function set_site_key(string $value):bool {
self::get('site_key');
self::set('site_key', $value);
return true;
}
@@ -131,7 +131,7 @@ final class Settings {
}
public static function set_secret_key(string $value):bool {
self::get('secret_key');
self::set('secret_key', $value);
return true;
}