/** Render an error message and a login form
* @param string plain text
-* @return null exits
+* @return never
*/
function auth_error($error) {
global $adminer, $has_token;
/** Send Location header and exit
* @param string null to only set a message
* @param string
-* @return null
+* @return never
*/
function redirect($location, $message = null) {
if ($message !== null) {
/** Apply command to all array items
* @param string
* @param list<string>
-* @param callback
+* @param callable(string):string
* @return bool
*/
function apply_queries($query, $tables, $escape = 'Adminer\table') {