From 21579bf3a4f5f9b37a1ccd17d6428455dc6dcfc8 Mon Sep 17 00:00:00 2001 From: Adrien Loison Date: Sat, 18 Nov 2017 17:33:57 +0100 Subject: [PATCH] Remove StyleMerger from Cell entity --- src/Spout/Writer/Common/Entity/Cell.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Spout/Writer/Common/Entity/Cell.php b/src/Spout/Writer/Common/Entity/Cell.php index db0bd11..b03bf03 100644 --- a/src/Spout/Writer/Common/Entity/Cell.php +++ b/src/Spout/Writer/Common/Entity/Cell.php @@ -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(); } /**