From 7b427ff7991ed6201636f34aa854cd9be8ae4456 Mon Sep 17 00:00:00 2001 From: Sieciech Date: Sun, 28 Feb 2021 01:02:13 +0100 Subject: [PATCH] fix --- src/Fufle/ORM/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fufle/ORM/Query.php b/src/Fufle/ORM/Query.php index f360ee9..0a4367e 100644 --- a/src/Fufle/ORM/Query.php +++ b/src/Fufle/ORM/Query.php @@ -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(); }