public function PHPExcel_Style_Conditional::__clone in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php \PHPExcel_Style_Conditional::__clone()
* Implement PHP __clone to create a deep clone, not just a shallow copy.
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Conditional.php, line 267
Class
- PHPExcel_Style_Conditional
- PHPExcel_Style_Conditional
Code
public function __clone() {
$vars = get_object_vars($this);
foreach ($vars as $key => $value) {
if (is_object($value)) {
$this->{$key} = clone $value;
}
else {
$this->{$key} = $value;
}
}
}