This commit is contained in:
2025-12-07 01:22:54 +01:00
parent b18df2f206
commit 0905306913

View File

@@ -682,7 +682,7 @@ class ApiKernel
$this->fail('Server error', get_class($e) . ': ' . $e->getMessage(), 500); $this->fail('Server error', get_class($e) . ': ' . $e->getMessage(), 500);
} }
} }
}
private function lookupTableName(string $key, string $default): string private function lookupTableName(string $key, string $default): string
{ {
$tables = $this->conf['tables'] ?? []; $tables = $this->conf['tables'] ?? [];
@@ -750,3 +750,4 @@ class ApiKernel
$summary['total'] = array_sum($summary); $summary['total'] = array_sum($summary);
return $summary; return $summary;
} }
}