summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Exporter/ColumnConsistency.php (renamed from src/Exporter/Validators/ColumnConsistency.php)4
-rw-r--r--src/Exporter/NullFormatter.php (renamed from src/Exporter/Formatters/NullFormatter.php)4
-rw-r--r--src/Exporter/NullValidator.php (renamed from src/Exporter/Validators/NullValidator.php)4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/Exporter/Validators/ColumnConsistency.php b/src/Exporter/ColumnConsistency.php
index 9bf52bd..3af1f2f 100644
--- a/src/Exporter/Validators/ColumnConsistency.php
+++ b/src/Exporter/ColumnConsistency.php
@@ -10,13 +10,13 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
-namespace League\Csv\Exporter\Validators;
+namespace League\Csv\Exporter;
use InvalidArgumentException;
use RuntimeException;
/**
- * A class to manage data insertion into a CSV
+ * A class to manage column consistency on data insertion into a CSV
*
* @package League.csv
* @since 7.0.0
diff --git a/src/Exporter/Formatters/NullFormatter.php b/src/Exporter/NullFormatter.php
index 2895bd5..40be048 100644
--- a/src/Exporter/Formatters/NullFormatter.php
+++ b/src/Exporter/NullFormatter.php
@@ -10,13 +10,13 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
-namespace League\Csv\Exporter\Formatters;
+namespace League\Csv\Exporter;
use InvalidArgumentException;
use OutOfBoundsException;
/**
- * A class to manage data insertion into a CSV
+ * A class to handle null value formatting on data insertion into a CSV
*
* @package League.csv
* @since 7.0.0
diff --git a/src/Exporter/Validators/NullValidator.php b/src/Exporter/NullValidator.php
index 579c417..5fbb724 100644
--- a/src/Exporter/Validators/NullValidator.php
+++ b/src/Exporter/NullValidator.php
@@ -10,10 +10,10 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
-namespace League\Csv\Exporter\Validators;
+namespace League\Csv\Exporter;
/**
- * A class to manage data insertion into a CSV
+ * A class to validate null value handling on data insertion into a CSV
*
* @package League.csv
* @since 7.0.0