q('SELECT * FROM settings WHERE id = 1;'); self::$s = $s ? $s->fetch() : []; } public static function performDatabaseReset(): void { if (file_exists(self::$dbPath)) { unlink(self::$dbPath); self::$db = new Database(self::$dbPath); } } }