From 2b6a1c9cb1bcace674ad45f1bc60946ba75951e6 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 11 Feb 2016 06:49:39 +0100 Subject: [PATCH] Fixes a bug in the CSV importer. --- app/Helpers/Csv/Data.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Helpers/Csv/Data.php b/app/Helpers/Csv/Data.php index 19a5e0fbb9..5ccfe6222d 100644 --- a/app/Helpers/Csv/Data.php +++ b/app/Helpers/Csv/Data.php @@ -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 */