builder = SqlBuilder::builder($this); parent::__construct(); } /** * @return string * @throws */ public function getSql(): string { return $this->builder->get(); } /** * @return string * @throws */ public function getCondition(): string { return $this->builder->getCondition(); } }