code beautifier

This commit is contained in:
Gregory Letellier
2023-11-03 09:01:55 +01:00
parent 4d7f0d6d83
commit 72ba193a1e
3 changed files with 15 additions and 16 deletions

View File

@@ -8,11 +8,11 @@ class Model
protected array $updated;
protected string $table;
protected string $connection = "";
protected string $pk;
protected string $pk;
private bool $new;
public function __construct()
{
{
$this->new = true;
$this->values = array();
$this->updated = array();
@@ -62,7 +62,7 @@ class Model
}
public function save(): bool
{
{
$ret = false;
$qb = $this->newQueryBuilder();
if ($this->new) {