diff options
author | Ignace Nyamagana Butera <nyamsprod@gmail.com> | 2015-02-17 09:33:53 +0100 |
---|---|---|
committer | Ignace Nyamagana Butera <nyamsprod@gmail.com> | 2015-02-17 09:33:53 +0100 |
commit | 4cc2b181d89dcfe39b9111fa6c71951f2b06442d (patch) | |
tree | ca5e268371c20def11dff722d9d4e317f8328168 /src | |
parent | 8d9b2417753ef2ef4a470cc5fc052f62270de843 (diff) | |
download | csv-4cc2b181d89dcfe39b9111fa6c71951f2b06442d.zip csv-4cc2b181d89dcfe39b9111fa6c71951f2b06442d.tar.gz csv-4cc2b181d89dcfe39b9111fa6c71951f2b06442d.tar.bz2 |
simplified architecture
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 |