@@ -233,7 +233,7 @@ discard block |
||
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 |
||
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 |
||
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 | */ |
@@ -187,6 +187,7 @@ discard block |
||
187 | 187 | * replaceQuotedSpecialChars method which (at least to me) makes more sense. |
188 | 188 | * |
189 | 189 | * @param string The string to replace quoted strings within |
190 | + * @param string $data |
|
190 | 191 | * @return string The input string with quoted strings removed |
191 | 192 | * @todo Replace code that uses this method with the replaceQuotedSpecialChars |
192 | 193 | * method instead. I think it's cleaner. |
@@ -558,7 +559,7 @@ discard block |
||
558 | 559 | * Determine whether a particular string of data has quotes around it. |
559 | 560 | * |
560 | 561 | * @param string $data The data to check |
561 | - * @return boolean Whether the data is quoted or not |
|
562 | + * @return integer Whether the data is quoted or not |
|
562 | 563 | */ |
563 | 564 | protected function isQuoted($data) |
564 | 565 | { |