Move Cell and Options to Entity folder
This commit is contained in:
parent
69b091b37c
commit
e57daf5885
@ -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;
|
||||
|
||||
/**
|
||||
|
@ -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
|
||||
|
@ -1,13 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Box\Spout\Writer\Common;
|
||||
namespace Box\Spout\Writer\Entity;
|
||||
|
||||
use Box\Spout\Writer\Common\Helper\CellHelper;
|
||||
|
||||
/**
|
||||
* Class Cell
|
||||
*
|
||||
* @package Box\Spout\Writer\Common
|
||||
* @package Box\Spout\Writer\Entity
|
||||
*/
|
||||
class Cell
|
||||
{
|
@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Box\Spout\Writer\Common;
|
||||
namespace Box\Spout\Writer\Entity;
|
||||
|
||||
/**
|
||||
* Class Options
|
||||
* Writer' options holder
|
||||
*
|
||||
* @package Box\Spout\Writer\Common
|
||||
* @package Box\Spout\Writer\Entity
|
||||
*/
|
||||
abstract class Options
|
||||
{
|
@ -6,7 +6,7 @@ use Box\Spout\Common\Exception\IOException;
|
||||
use Box\Spout\Writer\Common\Helper\FileSystemWithRootFolderHelperInterface;
|
||||
use Box\Spout\Writer\Common\Helper\StyleHelperInterface;
|
||||
use Box\Spout\Writer\Manager\OptionsManagerInterface;
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\Common\Sheet;
|
||||
use Box\Spout\Writer\Entity\Workbook;
|
||||
use Box\Spout\Writer\Entity\Worksheet;
|
||||
|
@ -4,7 +4,7 @@ namespace Box\Spout\Writer\ODS\Factory;
|
||||
|
||||
use Box\Spout\Common\Helper\StringHelper;
|
||||
use Box\Spout\Writer\Manager\OptionsManagerInterface;
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\Factory\EntityFactory;
|
||||
use Box\Spout\Writer\Factory\InternalFactoryInterface;
|
||||
use Box\Spout\Writer\ODS\Helper\FileSystemHelper;
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace Box\Spout\Writer\ODS\Manager;
|
||||
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\Manager\OptionsManagerAbstract;
|
||||
use Box\Spout\Writer\Style\StyleBuilder;
|
||||
|
||||
|
@ -5,7 +5,7 @@ namespace Box\Spout\Writer\ODS\Manager;
|
||||
use Box\Spout\Common\Exception\InvalidArgumentException;
|
||||
use Box\Spout\Common\Exception\IOException;
|
||||
use Box\Spout\Common\Helper\StringHelper;
|
||||
use Box\Spout\Writer\Common\Cell;
|
||||
use Box\Spout\Writer\Entity\Cell;
|
||||
use Box\Spout\Writer\Entity\Worksheet;
|
||||
use Box\Spout\Writer\Manager\WorksheetManagerInterface;
|
||||
use Box\Spout\Writer\ODS\Helper\StyleHelper;
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace Box\Spout\Writer\ODS;
|
||||
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\WriterMultiSheetsAbstract;
|
||||
|
||||
/**
|
||||
|
@ -7,7 +7,7 @@ use Box\Spout\Common\Exception\IOException;
|
||||
use Box\Spout\Common\Exception\SpoutException;
|
||||
use Box\Spout\Common\Helper\FileSystemHelper;
|
||||
use Box\Spout\Writer\Manager\OptionsManagerInterface;
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\Exception\WriterAlreadyOpenedException;
|
||||
use Box\Spout\Writer\Exception\WriterNotOpenedException;
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
namespace Box\Spout\Writer;
|
||||
|
||||
use Box\Spout\Writer\Manager\OptionsManagerInterface;
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\Entity\Worksheet;
|
||||
use Box\Spout\Writer\Exception\WriterNotOpenedException;
|
||||
use Box\Spout\Writer\Factory\InternalFactoryInterface;
|
||||
|
@ -5,7 +5,7 @@ namespace Box\Spout\Writer\XLSX\Factory;
|
||||
use Box\Spout\Common\Escaper;
|
||||
use Box\Spout\Common\Helper\StringHelper;
|
||||
use Box\Spout\Writer\Manager\OptionsManagerInterface;
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\Factory\EntityFactory;
|
||||
use Box\Spout\Writer\Factory\InternalFactoryInterface;
|
||||
use Box\Spout\Writer\Factory\WorkbookFactory;
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace Box\Spout\Writer\XLSX\Manager;
|
||||
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\Manager\OptionsManagerAbstract;
|
||||
use Box\Spout\Writer\Style\StyleBuilder;
|
||||
|
||||
|
@ -5,10 +5,10 @@ namespace Box\Spout\Writer\XLSX\Manager;
|
||||
use Box\Spout\Common\Exception\InvalidArgumentException;
|
||||
use Box\Spout\Common\Exception\IOException;
|
||||
use Box\Spout\Common\Helper\StringHelper;
|
||||
use Box\Spout\Writer\Common\Cell;
|
||||
use Box\Spout\Writer\Common\Helper\CellHelper;
|
||||
use Box\Spout\Writer\Manager\OptionsManagerInterface;
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\Entity\Cell;
|
||||
use Box\Spout\Writer\Entity\Worksheet;
|
||||
use Box\Spout\Writer\Manager\WorksheetManagerInterface;
|
||||
use Box\Spout\Writer\Style\Style;
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace Box\Spout\Writer\XLSX;
|
||||
|
||||
use Box\Spout\Writer\Common\Options;
|
||||
use Box\Spout\Writer\Entity\Options;
|
||||
use Box\Spout\Writer\WriterMultiSheetsAbstract;
|
||||
|
||||
/**
|
||||
|
@ -5,7 +5,7 @@ namespace Box\Spout\Writer\CSV;
|
||||
use Box\Spout\TestUsingResource;
|
||||
use Box\Spout\Common\Type;
|
||||
use Box\Spout\Common\Helper\EncodingHelper;
|
||||
use Box\Spout\Writer\Common\Cell;
|
||||
use Box\Spout\Writer\Entity\Cell;
|
||||
use Box\Spout\Writer\WriterFactory;
|
||||
|
||||
/**
|
||||
|
@ -6,8 +6,8 @@ use Box\Spout\Common\Exception\SpoutException;
|
||||
use Box\Spout\Common\Type;
|
||||
use Box\Spout\Reader\Wrapper\XMLReader;
|
||||
use Box\Spout\TestUsingResource;
|
||||
use Box\Spout\Writer\Common\Cell;
|
||||
use Box\Spout\Writer\Common\Helper\ZipHelper;
|
||||
use Box\Spout\Writer\Entity\Cell;
|
||||
use Box\Spout\Writer\WriterFactory;
|
||||
|
||||
/**
|
||||
|
@ -5,7 +5,7 @@ namespace Box\Spout\Writer\XLSX;
|
||||
use Box\Spout\Common\Exception\SpoutException;
|
||||
use Box\Spout\Common\Type;
|
||||
use Box\Spout\TestUsingResource;
|
||||
use Box\Spout\Writer\Common\Cell;
|
||||
use Box\Spout\Writer\Entity\Cell;
|
||||
use Box\Spout\Writer\WriterFactory;
|
||||
use Box\Spout\Writer\XLSX\Manager\WorksheetManager;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user