Fixes a bug in the CSV importer.

This commit is contained in:
James Cole 2016-02-11 06:49:39 +01:00
parent c4606b1854
commit 2b6a1c9cb1

View File

@ -15,13 +15,13 @@ class Data
{ {
/** @var string */ /** @var string */
protected $csvFileContent; protected $csvFileContent = '';
/** @var string */ /** @var string */
protected $csvFileLocation; protected $csvFileLocation = '';
/** @var string */ /** @var string */
protected $dateFormat; protected $dateFormat = '';
/** @var string */ /** @var string */
protected $delimiter; protected $delimiter = '';
/** @var bool */ /** @var bool */
protected $hasHeaders; protected $hasHeaders;
/** @var int */ /** @var int */