This commit is contained in:
Yuri Kuznetsov
2020-07-31 15:10:59 +03:00
parent b54cd7fbd9
commit 1d6889879d
2 changed files with 4 additions and 2 deletions
@@ -277,7 +277,6 @@ class RDBSelectBuilder implements Findable
return $this;
}
protected function getSelectParams(array $params = [])
{
if (isset($params['whereClause'])) {
+4 -1
View File
@@ -601,7 +601,10 @@ class RDB extends Repository implements Findable, Relatable, Removable
return $this->isTableLocked;
}
protected function createSelectBuilder() : RDBSelectBuilder
/**
* Create a select builder.
*/
public function createSelectBuilder() : RDBSelectBuilder
{
return new RDBSelectBuilder($this);
}