Completed
Push — releases/v0.2 ( 547b38...47521e )
by Luke
05:58
created
src/CSVelte/Reader.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      * readable (can be read). This will make sure that whatever is passed to
126 126
      * the reader meets these expectations and set $this->source.
127 127
      *
128
-     * @param \CSVelte\Contract\Readable|object|string $input See description
128
+     * @param Readable $input See description
129 129
      * @return $this
130 130
      */
131 131
     protected function setSource($input)
@@ -326,6 +326,9 @@  discard block
 block discarded – undo
326 326
      * @todo This actually shouldn't even be necessary. Characters should be read
327 327
      *     in one at a time and a quote that follows another should just be ignored
328 328
      *     deeming this unnecessary.
329
+     * @param string $str
330
+     * @param string $esc
331
+     * @param string $quo
329 332
      */
330 333
     protected function unEscape($str, $esc, $quo)
331 334
     {
@@ -336,6 +339,7 @@  discard block
 block discarded – undo
336 339
      * Parse a line of CSV data into an array of columns
337 340
      *
338 341
      * @param string A line of CSV data to parse
342
+     * @param string $line
339 343
      * @return array An array of columns
340 344
      * @access protected
341 345
      * @internal
@@ -415,7 +419,7 @@  discard block
 block discarded – undo
415 419
     /**
416 420
      * Retrieve header row.
417 421
      *
418
-     * @return CSVelte\Table\HeaderRow|null The header row if there is one
422
+     * @return HeaderRow The header row if there is one
419 423
      */
420 424
     public function header()
421 425
     {
@@ -456,7 +460,7 @@  discard block
 block discarded – undo
456 460
     /**
457 461
      * Returns an iterator with rows from user-supplied filter functions removed
458 462
      *
459
-     * @return CSVelte\Reader\FilteredReader An iterator with filtered rows
463
+     * @return FilteredReader An iterator with filtered rows
460 464
      */
461 465
     public function filter()
462 466
     {
Please login to merge, or discard this patch.