0.2.3 #2

Merged
Sieciech merged 18 commits from 0.2.3 into master 2021-03-08 10:29:29 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit a3d71c7bc5 - Show all commits

View File

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