Fixed code style (probably due to recent php-cs-fixer version)
This commit is contained in:
parent
816596183f
commit
c29d1877b8
@ -28,13 +28,13 @@ class SheetIterator implements IteratorInterface
|
|||||||
const XML_ATTRIBUTE_TABLE_STYLE_NAME = 'table:style-name';
|
const XML_ATTRIBUTE_TABLE_STYLE_NAME = 'table:style-name';
|
||||||
const XML_ATTRIBUTE_TABLE_DISPLAY = 'table:display';
|
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;
|
protected $filePath;
|
||||||
|
|
||||||
/** @var \Box\Spout\Common\Manager\OptionsManagerInterface Reader's options manager */
|
/** @var \Box\Spout\Common\Manager\OptionsManagerInterface Reader's options manager */
|
||||||
protected $optionsManager;
|
protected $optionsManager;
|
||||||
|
|
||||||
/** @var InternalEntityFactory $entityFactory Factory to create entities */
|
/** @var InternalEntityFactory Factory to create entities */
|
||||||
protected $entityFactory;
|
protected $entityFactory;
|
||||||
|
|
||||||
/** @var XMLReader The XMLReader object that will help read sheet's XML data */
|
/** @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 */
|
/** @var InternalEntityFactory Factory to create entities */
|
||||||
protected $entityFactory;
|
protected $entityFactory;
|
||||||
|
|
||||||
/** @var HelperFactory $helperFactory Factory to create helpers */
|
/** @var HelperFactory Factory to create helpers */
|
||||||
protected $helperFactory;
|
protected $helperFactory;
|
||||||
|
|
||||||
/** @var CachingStrategyFactory Factory to create shared strings caching strategies */
|
/** @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 */
|
/** @var string Path of the XLSX file being read */
|
||||||
protected $filePath;
|
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;
|
protected $sheetDataXMLFilePath;
|
||||||
|
|
||||||
/** @var \Box\Spout\Reader\Wrapper\XMLReader The XMLReader object that will help read sheet's XML data */
|
/** @var \Box\Spout\Reader\Wrapper\XMLReader The XMLReader object that will help read sheet's XML data */
|
||||||
|
@ -44,7 +44,7 @@ abstract class WorkbookManagerAbstract implements WorkbookManagerInterface
|
|||||||
/** @var InternalEntityFactory Factory to create entities */
|
/** @var InternalEntityFactory Factory to create entities */
|
||||||
protected $entityFactory;
|
protected $entityFactory;
|
||||||
|
|
||||||
/** @var ManagerFactoryInterface $managerFactory Factory to create managers */
|
/** @var ManagerFactoryInterface Factory to create managers */
|
||||||
protected $managerFactory;
|
protected $managerFactory;
|
||||||
|
|
||||||
/** @var Worksheet The worksheet where data will be written to */
|
/** @var Worksheet The worksheet where data will be written to */
|
||||||
|
@ -22,7 +22,7 @@ class ManagerFactory implements ManagerFactoryInterface
|
|||||||
/** @var InternalEntityFactory */
|
/** @var InternalEntityFactory */
|
||||||
protected $entityFactory;
|
protected $entityFactory;
|
||||||
|
|
||||||
/** @var HelperFactory $helperFactory */
|
/** @var HelperFactory */
|
||||||
protected $helperFactory;
|
protected $helperFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -33,7 +33,7 @@ abstract class WriterAbstract implements WriterInterface
|
|||||||
/** @var GlobalFunctionsHelper Helper to work with global functions */
|
/** @var GlobalFunctionsHelper Helper to work with global functions */
|
||||||
protected $globalFunctionsHelper;
|
protected $globalFunctionsHelper;
|
||||||
|
|
||||||
/** @var HelperFactory $helperFactory */
|
/** @var HelperFactory */
|
||||||
protected $helperFactory;
|
protected $helperFactory;
|
||||||
|
|
||||||
/** @var OptionsManagerInterface Writer options manager */
|
/** @var OptionsManagerInterface Writer options manager */
|
||||||
|
@ -24,7 +24,7 @@ class ManagerFactory implements ManagerFactoryInterface
|
|||||||
/** @var InternalEntityFactory */
|
/** @var InternalEntityFactory */
|
||||||
protected $entityFactory;
|
protected $entityFactory;
|
||||||
|
|
||||||
/** @var HelperFactory $helperFactory */
|
/** @var HelperFactory */
|
||||||
protected $helperFactory;
|
protected $helperFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -14,10 +14,10 @@ class SpoutTestStream
|
|||||||
const PATH_TO_CSV_RESOURCES = 'tests/resources/csv/';
|
const PATH_TO_CSV_RESOURCES = 'tests/resources/csv/';
|
||||||
const CSV_EXTENSION = '.csv';
|
const CSV_EXTENSION = '.csv';
|
||||||
|
|
||||||
/** @var int $position */
|
/** @var int */
|
||||||
private $position;
|
private $position;
|
||||||
|
|
||||||
/** @var resource $fileHandle */
|
/** @var resource */
|
||||||
private $fileHandle;
|
private $fileHandle;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user