Completed
Push — releases/v0.2.1 ( 74e7c5...3696a4 )
by Luke
09:43
created
src/CSVelte/Taster.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,6 +189,7 @@  discard block
 block discarded – undo
189 189
      * replaceQuotedSpecialChars method which (at least to me) makes more sense.
190 190
      *
191 191
      * @param string The string to replace quoted strings within
192
+     * @param string $data
192 193
      * @return string The input string with quoted strings removed
193 194
      * @todo Replace code that uses this method with the replaceQuotedSpecialChars
194 195
      *     method instead. I think it's cleaner.
@@ -559,7 +560,7 @@  discard block
 block discarded – undo
559 560
      * Determine whether a particular string of data has quotes around it.
560 561
      *
561 562
      * @param string The data to check
562
-     * @return boolean Whether the data is quoted or not
563
+     * @return integer Whether the data is quoted or not
563 564
      */
564 565
     protected function isQuoted($data)
565 566
     {
@@ -607,6 +608,8 @@  discard block
 block discarded – undo
607 608
      *
608 609
      * @param string The string to do the replacements on
609 610
      * @param string The delimiter character to replace
611
+     * @param string $data
612
+     * @param string $delim
610 613
      * @return string The data with replacements performed
611 614
      * @todo I could probably pass in (maybe optionally) the newline character I
612 615
      *     want to replace as well. I'll do that if I need to.
@@ -632,6 +635,7 @@  discard block
 block discarded – undo
632 635
      * to be practical.
633 636
      *
634 637
      * @param string The string of data to check the type of
638
+     * @param string $data
635 639
      * @return string One of the TYPE_ string constants above
636 640
      */
637 641
     protected function lickType($data)
Please login to merge, or discard this patch.
src/CSVelte/IO/Resource.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      *
234 234
      * Creates and returns a Stream object for this resource
235 235
      *
236
-     * @return resource The underlying stream resource
236
+     * @return Stream The underlying stream resource
237 237
      */
238 238
     public function __invoke()
239 239
     {
@@ -853,6 +853,7 @@  discard block
 block discarded – undo
853 853
      * only be called on unopened stream resources.
854 854
      *
855 855
      * @param  string The method that is asserting
856
+     * @param string $method
856 857
      * @return void
857 858
      * @throws \CSVelte\Exception\IOException if stream is open
858 859
      */
@@ -869,6 +870,7 @@  discard block
 block discarded – undo
869 870
      * Used internally to ensure that a given stream wrapper is valid and available
870 871
      *
871 872
      * @param  string The name of the stream wrapper
873
+     * @param string $name
872 874
      * @return void
873 875
      * @throws \InvalidArgumentException if wrapper doesn't exist
874 876
      */
Please login to merge, or discard this patch.