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 */
protected $csvFileContent;
protected $csvFileContent = '';
/** @var string */
protected $csvFileLocation;
protected $csvFileLocation = '';
/** @var string */
protected $dateFormat;
protected $dateFormat = '';
/** @var string */
protected $delimiter;
protected $delimiter = '';
/** @var bool */
protected $hasHeaders;
/** @var int */