Remove StyleMerger from Cell entity

This commit is contained in:
Adrien Loison 2017-11-18 17:33:57 +01:00
parent c826d15472
commit 21579bf3a4

View File

@ -4,7 +4,6 @@ namespace Box\Spout\Writer\Common\Entity;
use Box\Spout\Writer\Common\Entity\Style\Style;
use Box\Spout\Writer\Common\Helper\CellHelper;
use Box\Spout\Writer\Common\Manager\Style\StyleMerger;
/**
* Class Cell
@ -60,11 +59,6 @@ class Cell
*/
protected $style;
/**
* @var StyleMerger
*/
protected $styleMerger;
/**
* @param $value mixed
* @param Style|null $style
@ -73,7 +67,6 @@ class Cell
{
$this->setValue($value);
$this->setStyle($style);
$this->styleMerger = new StyleMerger();
}
/**