Move Cell and Options to Entity folder (#429)

This commit is contained in:
Adrien Loison 2017-05-29 22:51:12 +02:00 committed by GitHub
parent 69b091b37c
commit cebffbe80c
18 changed files with 21 additions and 21 deletions

View File

@ -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;
/**

View File

@ -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

View File

@ -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
{

View File

@ -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
{

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;
/**

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;
/**

View File

@ -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;
/**

View File

@ -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;
/**

View File

@ -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;