*
* The built string is stored inside of this objects 'value' parameter.
*/
- public function build() {
+ public function do_build() {
$this->value = '';
if (!empty($this->host)) {
}
$this->connection_string = clone($connection_string);
- $this->connection_string->build();
+ $this->connection_string->do_build();
return new c_base_return_true();
}
}
// make sure the connection string is built before using.
- $this->connection_string->build();
+ $this->connection_string->do_build();
// PHP's default error handle does not handle warnings.
// postgresql does not return the connection failure errors and instead prints a warning.