diff options
author | ignace nyamagana butera <nyamsprod@gmail.com> | 2015-10-15 13:27:22 +0200 |
---|---|---|
committer | ignace nyamagana butera <nyamsprod@gmail.com> | 2015-10-15 13:27:22 +0200 |
commit | 09f00a60a2fdefab94640fe3a53f2fa2ee0e8ff9 (patch) | |
tree | 3cc1fffbf36a3178e55bf4e7d481ee5a2fed8f1e /src | |
parent | f2e9b228f3c14e50004f527d960aebeacc606f41 (diff) | |
parent | 9c3ad7a02b9fdae1eb01d2f74351a88062c7172a (diff) | |
download | csv-09f00a60a2fdefab94640fe3a53f2fa2ee0e8ff9.zip csv-09f00a60a2fdefab94640fe3a53f2fa2ee0e8ff9.tar.gz csv-09f00a60a2fdefab94640fe3a53f2fa2ee0e8ff9.tar.bz2 |
Merge pull request #125 from mortenhauberg/fix-docblocks
Fix docblocks
Diffstat (limited to 'src')
-rw-r--r-- | src/Config/Controls.php | 4 | ||||
-rw-r--r-- | src/Config/Output.php | 2 | ||||
-rw-r--r-- | src/Modifier/QueryFilter.php | 2 | ||||
-rw-r--r-- | src/Modifier/RowFilter.php | 2 | ||||
-rw-r--r-- | src/Reader.php | 2 | ||||
-rw-r--r-- | src/Writer.php | 6 |
6 files changed, 10 insertions, 8 deletions
diff --git a/src/Config/Controls.php b/src/Config/Controls.php index 92e177d..94ef968 100644 --- a/src/Config/Controls.php +++ b/src/Config/Controls.php @@ -69,11 +69,11 @@ trait Controls abstract public function getIterator(); /** - * Sets the field delimeter + * Sets the field delimiter * * @param string $delimiter * - * @throws InvalidArgumentException If $delimeter is not a single character + * @throws InvalidArgumentException If $delimiter is not a single character * * @return $this */ diff --git a/src/Config/Output.php b/src/Config/Output.php index 035f444..1bddfe3 100644 --- a/src/Config/Output.php +++ b/src/Config/Output.php @@ -218,6 +218,8 @@ trait Output /** * Convert Csv file into UTF-8 * + * @param Iterator $iterator + * * @return Iterator */ protected function convertToUtf8(Iterator $iterator) diff --git a/src/Modifier/QueryFilter.php b/src/Modifier/QueryFilter.php index d6eef72..7573884 100644 --- a/src/Modifier/QueryFilter.php +++ b/src/Modifier/QueryFilter.php @@ -77,7 +77,7 @@ trait QueryFilter } /** - * Tell whethe we can strip or not the leading BOM sequence + * Tell whether we can strip or not the leading BOM sequence * * @return bool */ diff --git a/src/Modifier/RowFilter.php b/src/Modifier/RowFilter.php index 06137ff..0205ee4 100644 --- a/src/Modifier/RowFilter.php +++ b/src/Modifier/RowFilter.php @@ -140,7 +140,7 @@ trait RowFilter } /** - * Remove all registered validatior + * Remove all registered validators * * @return $this */ diff --git a/src/Reader.php b/src/Reader.php index 9160074..e4b5deb 100644 --- a/src/Reader.php +++ b/src/Reader.php @@ -29,7 +29,7 @@ use SplFileObject; class Reader extends AbstractCsv { /** - * @ihneritdoc + * @inheritdoc */ protected $stream_filter_mode = STREAM_FILTER_READ; diff --git a/src/Writer.php b/src/Writer.php index c25143d..571d021 100644 --- a/src/Writer.php +++ b/src/Writer.php @@ -29,7 +29,7 @@ class Writer extends AbstractCsv use RowFilter; /** - * @ihneritdoc + * @inheritdoc */ protected $stream_filter_mode = STREAM_FILTER_WRITE; @@ -55,7 +55,7 @@ class Writer extends AbstractCsv protected static $fputcsv_param_count; /** - * @ihneritdoc + * @inheritdoc */ protected function __construct($path, $open_mode = 'r+') { @@ -79,7 +79,7 @@ class Writer extends AbstractCsv * * a simple wrapper method around insertOne * - * @param Traversable|array $rows a multidimentional array or a Traversable object + * @param Traversable|array $rows a multidimensional array or a Traversable object * * @throws InvalidArgumentException If the given rows format is invalid * |