where = $where; return $this; } /** * @param array $params */ public function execute(array $params = []): void { $this->sql->_executeDelete($this, $params); } /** * @internal */ public function _getTable(): string { return $this->table; } /** * @internal */ public function _getWhere(): string { return $this->where; } }