From e57daf5885f36bda44077e635aab23b5bbdfaefc Mon Sep 17 00:00:00 2001 From: Adrien Loison Date: Mon, 29 May 2017 22:43:24 +0200 Subject: [PATCH] Move Cell and Options to Entity folder --- src/Spout/Writer/CSV/Manager/OptionsManager.php | 2 +- src/Spout/Writer/CSV/Writer.php | 2 +- src/Spout/Writer/{Common => Entity}/Cell.php | 4 ++-- src/Spout/Writer/{Common => Entity}/Options.php | 4 ++-- src/Spout/Writer/Manager/WorkbookManagerAbstract.php | 2 +- src/Spout/Writer/ODS/Factory/InternalFactory.php | 2 +- src/Spout/Writer/ODS/Manager/OptionsManager.php | 2 +- src/Spout/Writer/ODS/Manager/WorksheetManager.php | 2 +- src/Spout/Writer/ODS/Writer.php | 2 +- src/Spout/Writer/WriterAbstract.php | 2 +- src/Spout/Writer/WriterMultiSheetsAbstract.php | 2 +- src/Spout/Writer/XLSX/Factory/InternalFactory.php | 2 +- src/Spout/Writer/XLSX/Manager/OptionsManager.php | 2 +- src/Spout/Writer/XLSX/Manager/WorksheetManager.php | 4 ++-- src/Spout/Writer/XLSX/Writer.php | 2 +- tests/Spout/Writer/CSV/WriterTest.php | 2 +- tests/Spout/Writer/ODS/WriterTest.php | 2 +- tests/Spout/Writer/XLSX/WriterTest.php | 2 +- 18 files changed, 21 insertions(+), 21 deletions(-) rename src/Spout/Writer/{Common => Entity}/Cell.php (97%) rename src/Spout/Writer/{Common => Entity}/Options.php (88%) diff --git a/src/Spout/Writer/CSV/Manager/OptionsManager.php b/src/Spout/Writer/CSV/Manager/OptionsManager.php index fc96170..73a47c5 100644 --- a/src/Spout/Writer/CSV/Manager/OptionsManager.php +++ b/src/Spout/Writer/CSV/Manager/OptionsManager.php @@ -2,7 +2,7 @@ namespace Box\Spout\Writer\CSV\Manager; -use Box\Spout\Writer\Common\Options; +use Box\Spout\Writer\Entity\Options; use Box\Spout\Writer\Manager\OptionsManagerAbstract; /** diff --git a/src/Spout/Writer/CSV/Writer.php b/src/Spout/Writer/CSV/Writer.php index d94aa05..8a58efa 100644 --- a/src/Spout/Writer/CSV/Writer.php +++ b/src/Spout/Writer/CSV/Writer.php @@ -5,7 +5,7 @@ namespace Box\Spout\Writer\CSV; use Box\Spout\Writer\WriterAbstract; use Box\Spout\Common\Exception\IOException; use Box\Spout\Common\Helper\EncodingHelper; -use Box\Spout\Writer\Common\Options; +use Box\Spout\Writer\Entity\Options; /** * Class Writer diff --git a/src/Spout/Writer/Common/Cell.php b/src/Spout/Writer/Entity/Cell.php similarity index 97% rename from src/Spout/Writer/Common/Cell.php rename to src/Spout/Writer/Entity/Cell.php index e08b958..230de6a 100644 --- a/src/Spout/Writer/Common/Cell.php +++ b/src/Spout/Writer/Entity/Cell.php @@ -1,13 +1,13 @@