Triggers + EntityLog

This commit is contained in:
2021-04-08 18:29:47 +02:00
parent 140f428491
commit 43d9a65def
20 changed files with 741 additions and 334 deletions

View File

@@ -20,6 +20,9 @@ abstract class Query {
}
// can actually return bool|array (depending on success and query type)
public abstract function execute();
public function execute() {
return $this->sql->executeQuery($this);
}
public abstract function build(array &$params): ?string;
}