fix: noverify --fix

This commit is contained in:
origami11@yandex.ru 2024-06-14 14:12:02 +03:00
parent 5aff28d2b8
commit 117640a755
44 changed files with 174 additions and 174 deletions

View file

@ -23,7 +23,7 @@ class Manager
$this->DropTableQuery($action["table_name"], true);
break;
case "createTable":
$constraints = isset($action["constraints"]) ? $action["constraints"] : null;
$constraints = $action["constraints"] ?? null;
$this->CreateTableQuery($action["table_name"], $action["fields"], $constraints);
break;
case "addColumn":
@ -70,7 +70,7 @@ class Manager
{
$statement = "DROP TABLE IF EXISTS ".$table;
if ($this->db->isPostgres()&&$cascade) {
$statement = $statement." CASCADE";
$statement .= " CASCADE";
}
$this->db->query($statement);
}
@ -201,7 +201,7 @@ class Manager
{
$pg = $this->db->isPostgres();
$result/*: array*/ = array();
$result/*: array*/ = [];
$data/*: array*/ = $this->db->fetchAllArray("SELECT * FROM ".$table_name.";");
if (!$pg) {
@ -219,11 +219,11 @@ class Manager
}
}
foreach ($data as $r) {
$result[] = array(
$result[] = [
"type" => "insert",
"table_name" => $table_name,
"values" => $r
);
];
}
return $result;
}
@ -246,7 +246,7 @@ class Manager
public function DumpInserts()
{
$table_names = $this->GetAllTableNames();
$result = array();
$result = [];
foreach ($table_names as $table_name) {
$result = array_merge($result, $this->DumpTable($table_name));
}