This commit is contained in:
2023-12-12 15:35:35 +08:00
parent 510a13e3da
commit e2c0f62532
32 changed files with 922 additions and 1095 deletions
+10 -11
View File
@@ -5,7 +5,6 @@ namespace Database\Orm;
use Database\Traits\Builder;
use Exception;
/**
* Trait Condition
@@ -15,15 +14,15 @@ trait Condition
{
use Builder;
use Builder;
/**
* @param $query
* @return string
* @throws Exception
*/
public function getWhere($query): string
{
return $this->where($query);
}
/**
* @param $query
* @return string
* @throws
*/
public function getWhere($query): string
{
return $this->where($query);
}
}