Satisfy php-cs-fixer
This commit is contained in:
parent
557b6fd158
commit
73f2a522c0
@ -28,13 +28,13 @@ class SheetIterator implements IteratorInterface
|
||||
const XML_ATTRIBUTE_TABLE_STYLE_NAME = 'table:style-name';
|
||||
const XML_ATTRIBUTE_TABLE_DISPLAY = 'table:display';
|
||||
|
||||
/** @var string $filePath Path of the file to be read */
|
||||
/** @var string Path of the file to be read */
|
||||
protected $filePath;
|
||||
|
||||
/** @var \Box\Spout\Common\Manager\OptionsManagerInterface Reader's options manager */
|
||||
protected $optionsManager;
|
||||
|
||||
/** @var InternalEntityFactory $entityFactory Factory to create entities */
|
||||
/** @var InternalEntityFactory Factory to create entities */
|
||||
protected $entityFactory;
|
||||
|
||||
/** @var XMLReader The XMLReader object that will help read sheet's XML data */
|
||||
|
@ -43,7 +43,7 @@ class SharedStringsManager
|
||||
/** @var InternalEntityFactory Factory to create entities */
|
||||
protected $entityFactory;
|
||||
|
||||
/** @var HelperFactory $helperFactory Factory to create helpers */
|
||||
/** @var HelperFactory Factory to create helpers */
|
||||
protected $helperFactory;
|
||||
|
||||
/** @var CachingStrategyFactory Factory to create shared strings caching strategies */
|
||||
|
@ -35,7 +35,7 @@ class RowIterator implements IteratorInterface
|
||||
/** @var string Path of the XLSX file being read */
|
||||
protected $filePath;
|
||||
|
||||
/** @var string $sheetDataXMLFilePath Path of the sheet data XML file as in [Content_Types].xml */
|
||||
/** @var string Path of the sheet data XML file as in [Content_Types].xml */
|
||||
protected $sheetDataXMLFilePath;
|
||||
|
||||
/** @var \Box\Spout\Reader\Wrapper\XMLReader The XMLReader object that will help read sheet's XML data */
|
||||
|
@ -43,7 +43,7 @@ abstract class WorkbookManagerAbstract implements WorkbookManagerInterface
|
||||
/** @var InternalEntityFactory Factory to create entities */
|
||||
protected $entityFactory;
|
||||
|
||||
/** @var ManagerFactoryInterface $managerFactory Factory to create managers */
|
||||
/** @var ManagerFactoryInterface Factory to create managers */
|
||||
protected $managerFactory;
|
||||
|
||||
/** @var Worksheet The worksheet where data will be written to */
|
||||
|
@ -22,7 +22,7 @@ class ManagerFactory implements ManagerFactoryInterface
|
||||
/** @var InternalEntityFactory */
|
||||
protected $entityFactory;
|
||||
|
||||
/** @var HelperFactory $helperFactory */
|
||||
/** @var HelperFactory */
|
||||
protected $helperFactory;
|
||||
|
||||
/**
|
||||
|
@ -9,7 +9,6 @@ use Box\Spout\Common\Exception\InvalidArgumentException;
|
||||
use Box\Spout\Common\Exception\IOException;
|
||||
use Box\Spout\Common\Helper\Escaper\ODS as ODSEscaper;
|
||||
use Box\Spout\Common\Helper\StringHelper;
|
||||
use Box\Spout\Writer\Common\Entity\Options;
|
||||
use Box\Spout\Writer\Common\Entity\Worksheet;
|
||||
use Box\Spout\Writer\Common\Manager\Style\StyleMerger;
|
||||
use Box\Spout\Writer\Common\Manager\WorksheetManagerInterface;
|
||||
|
@ -33,7 +33,7 @@ abstract class WriterAbstract implements WriterInterface
|
||||
/** @var GlobalFunctionsHelper Helper to work with global functions */
|
||||
protected $globalFunctionsHelper;
|
||||
|
||||
/** @var HelperFactory $helperFactory */
|
||||
/** @var HelperFactory */
|
||||
protected $helperFactory;
|
||||
|
||||
/** @var OptionsManagerInterface Writer options manager */
|
||||
|
@ -24,7 +24,7 @@ class ManagerFactory implements ManagerFactoryInterface
|
||||
/** @var InternalEntityFactory */
|
||||
protected $entityFactory;
|
||||
|
||||
/** @var HelperFactory $helperFactory */
|
||||
/** @var HelperFactory */
|
||||
protected $helperFactory;
|
||||
|
||||
/**
|
||||
|
@ -14,10 +14,10 @@ class SpoutTestStream
|
||||
const PATH_TO_CSV_RESOURCES = 'tests/resources/csv/';
|
||||
const CSV_EXTENSION = '.csv';
|
||||
|
||||
/** @var int $position */
|
||||
/** @var int */
|
||||
private $position;
|
||||
|
||||
/** @var resource $fileHandle */
|
||||
/** @var resource */
|
||||
private $fileHandle;
|
||||
|
||||
/**
|
||||
|
@ -132,7 +132,7 @@ class SheetTest extends TestCase
|
||||
$writer = WriterEntityFactory::createXLSXWriter();
|
||||
$writer->setDefaultColumnWidth(10.0);
|
||||
$writer->openToFile($resourcePath);
|
||||
|
||||
|
||||
$writer->addRow($this->createRowFromValues(['xlsx--11', 'xlsx--12']));
|
||||
$writer->close();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user