1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-26 15:54:34 +02:00

Code style: Remove newline before }

This commit is contained in:
Jakub Vrana
2025-03-05 14:37:25 +01:00
parent f820fa1c26
commit af68e30742
42 changed files with 0 additions and 44 deletions

View File

@@ -110,7 +110,6 @@ if (isset($_GET["mongo"])) {
'charsetnr' => $this->_charset[$name],
);
}
}

View File

@@ -240,7 +240,6 @@ if (isset($_GET["mssql"])) {
return "relational-databases/system-$link" . preg_replace('~_~', '-', strtolower($name)) . "-transact-sql";
}
}
}

View File

@@ -355,7 +355,6 @@ if (!defined("DRIVER")) {
}
return $c_style;
}
}

View File

@@ -171,7 +171,6 @@ if (isset($_GET["oracle"])) {
function hasCStyleEscapes() {
return true;
}
}

View File

@@ -258,7 +258,6 @@ if (isset($_GET["pgsql"])) {
}
return $c_style;
}
}

View File

@@ -149,7 +149,6 @@ if (isset($_GET["sqlite"])) {
preg_match_all('~ CHECK *(\( *(((?>[^()]*[^() ])|(?1))*) *\))~', $this->_conn->result("SELECT sql FROM sqlite_master WHERE type = 'table' AND name = " . q($table)), $matches); //! could be inside a comment
return array_combine($matches[2], $matches[2]);
}
}

View File

@@ -1106,5 +1106,4 @@ bodyLoad('<?php echo (is_object($connection) ? preg_replace('~^(\d\.?\d).*~s', '
}
echo "</ul>\n";
}
}

View File

@@ -216,5 +216,4 @@ WHERE c.CONSTRAINT_SCHEMA = " . q($_GET["ns"] != "" ? $_GET["ns"] : DB) . "
AND t.TABLE_NAME = " . q($table) . "
AND CHECK_CLAUSE NOT LIKE '% IS NOT NULL'"); // ignore default IS NOT NULL checks in PostrgreSQL
}
}

View File

@@ -19,5 +19,4 @@ class TmpFile {
fpassthru($this->handler);
fclose($this->handler);
}
}