This commit is contained in:
Michal Sieciechowicz 2021-03-01 16:22:54 +01:00
parent a3c38a27c7
commit a3d71c7bc5
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
namespace Fufle\ORM;
class Query {
private string $table;
private string $primaryKey;
protected string $table;
protected string $primaryKey;
public function __construct(string $model) {
$this->table = $model::GetTableName();