From 17ac1dee1a54dba6ca165348ce7b48a2f387de2a Mon Sep 17 00:00:00 2001 From: Susann Sgorzaly Date: Sun, 18 Feb 2018 12:42:53 +0100 Subject: [PATCH] renamed namespace --- composer.json | 6 +++--- src/Csv.php | 4 ++-- src/extensions/DatatypeTrait.php | 2 +- tests/methods/ConstructTest.php | 4 ++-- tests/methods/ParseTest.php | 4 ++-- tests/methods/SaveTest.php | 4 ++-- tests/properties/default_values_test.php | 6 +++++- tests/properties/worthless_test.php | 8 ++++++-- 8 files changed, 23 insertions(+), 15 deletions(-) diff --git a/composer.json b/composer.json index fa0286e..ec01fc3 100644 --- a/composer.json +++ b/composer.json @@ -14,9 +14,9 @@ ], "autoload":{ "psr-4":{ - "CSV\\": "src", - "CSV\\extensions\\": "src\\extensions", - "CSV\\tests\\": "tests" + "ParseCsv\\": "src", + "ParseCsv\\extensions\\": "src\\extensions", + "ParseCsv\\tests\\": "tests" } }, "require-dev": { diff --git a/src/Csv.php b/src/Csv.php index 7fe2fb0..74381e4 100644 --- a/src/Csv.php +++ b/src/Csv.php @@ -1,7 +1,7 @@ csv = new parseCSV(); + $this->csv = new Csv(); //setup the reflection class $this->reflection = new ReflectionClass($this->csv);