Completed
Branch releases/v0.2 (e117cd)
by Luke
03:12
created
src/CSVelte/Reader.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      * readable (can be read). This will make sure that whatever is passed to
127 127
      * the reader meets these expectations and set $this->source.
128 128
      *
129
-     * @param \CSVelte\Contract\Readable|object|string $input See description
129
+     * @param Readable $input See description
130 130
      * @return $this
131 131
      */
132 132
     protected function setSource($input)
@@ -325,6 +325,9 @@  discard block
 block discarded – undo
325 325
      * @todo This actually shouldn't even be necessary. Characters should be read
326 326
      *     in one at a time and a quote that follows another should just be ignored
327 327
      *     deeming this unnecessary.
328
+     * @param string $str
329
+     * @param string $esc
330
+     * @param string $quo
328 331
      */
329 332
     protected function unEscape($str, $esc, $quo)
330 333
     {
@@ -335,6 +338,7 @@  discard block
 block discarded – undo
335 338
      * Parse a line of CSV data into an array of columns
336 339
      *
337 340
      * @param string A line of CSV data to parse
341
+     * @param string $line
338 342
      * @return array An array of columns
339 343
      * @access protected
340 344
      * @internal
Please login to merge, or discard this patch.