This commit is contained in:
Michał Sieciechowicz 2021-02-28 01:02:13 +01:00
parent be4eef7cac
commit 7b427ff799
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ class Query {
private string $table;
private string $primaryKey;
public function __construct(string $model) {
,//$model = new $class();
//$model = new $class();
$this->table = $model::getTableName();
$this->primaryKey = $model::getPrimaryKey();
}