From 67c6be872a7e88ce35fdb549652ebafbe5c3268a Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sun, 22 May 2016 23:09:42 +0200 Subject: [PATCH] Bad getter hasLegend --- src/Deblan/Csv/CsvParser.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Deblan/Csv/CsvParser.php b/src/Deblan/Csv/CsvParser.php index 6c5664f..70f45d5 100644 --- a/src/Deblan/Csv/CsvParser.php +++ b/src/Deblan/Csv/CsvParser.php @@ -86,9 +86,9 @@ class CsvParser $this->hasLegend = $v; } - public function getLegend() + public function getHasLegend() { - return $this->legend; + return $this->hasLegend; } public function setNullValues(array $v)