tag and installer&updater use english

This commit is contained in:
xiaomlove
2022-03-08 15:08:56 +08:00
parent a56891132d
commit 718a57539d
67 changed files with 1149 additions and 104 deletions

View File

@@ -251,6 +251,14 @@ class NexusDB
return DB::raw($value);
}
public static function statement($value)
{
if (IN_NEXUS) {
return sql_query($value);
}
return DB::statement($value);
}
public static function transaction(\Closure $callback, $attempts = 1)
{
if (IN_NEXUS) {