rawSql = $rawSql; $this->prefix = $prefix; } /** * @return string */ public function stringify() { if ( $this->genericSql !== null ) { return $this->genericSql; } $this->genericSql = $this->prefix . substr( QueryBuilderFromRawSql::generalizeSQL( $this->rawSql ), 0, 255 ); return $this->genericSql; } public function getRawSql() { return $this->rawSql; } }