Add option to disable Mysql SSL server verification

This commit is contained in:
Frédéric Guillot
2018-01-11 14:01:32 -08:00
parent f7c6cbd0f4
commit d35d5beee2
10 changed files with 141 additions and 111 deletions

View File

@@ -718,4 +718,12 @@ class Table
call_user_func_array(array($this->conditionBuilder, $name), $arguments);
return $this;
}
/**
* Clone function ensures that cloned objects are really clones
*/
public function __clone()
{
$this->conditionBuilder = clone $this->conditionBuilder;
}
}