fix code cleanup mistakes

This commit is contained in:
2021-04-02 22:41:24 +02:00
parent eea0aeacc6
commit 3d703fd7d5
5 changed files with 9 additions and 8 deletions

View File

@@ -19,6 +19,7 @@ abstract class Query {
return $this;
}
public abstract function execute(): bool;
// can actually return bool|array (depending on success and query type)
public abstract function execute();
}