X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fio%2Ffile%2Fcsv%2Fclass_CsvInputStreamer.php;h=8b72ad2de02fe6eaf3596fcc80a732217428317a;hp=957f6775060f603dfee377d014ecd7d89c40ee95;hb=1a91dabdfed365947d1ce11675aacae9d424edff;hpb=e65d661719c78867ff57607457c8abfaae2e2ee3 diff --git a/inc/classes/interfaces/io/file/csv/class_CsvInputStreamer.php b/inc/classes/interfaces/io/file/csv/class_CsvInputStreamer.php index 957f6775..8b72ad2d 100644 --- a/inc/classes/interfaces/io/file/csv/class_CsvInputStreamer.php +++ b/inc/classes/interfaces/io/file/csv/class_CsvInputStreamer.php @@ -22,6 +22,13 @@ * along with this program. If not, see . */ interface CsvInputStreamer extends FileInputStreamer { + /** + * Reads a line from CSV file and returns it as an indexed array + * + * @param $columnSeparator Character to use separting columns + * @return $lineArray An index array with the read line + */ + function readCsvFileLine ($columnSeparator); } // [EOF]