Skip to content

Commit

Permalink
Update RowIterator.php (box#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlukasz authored and adrilo committed Jul 4, 2016
1 parent 192659c commit aa25678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Spout/Reader/CSV/RowIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function next()
*/
protected function getNextUTF8EncodedRow()
{
$encodedRowData = fgetcsv($this->filePointer, self::MAX_READ_BYTES_PER_LINE, $this->fieldDelimiter, $this->fieldEnclosure);
$encodedRowData = $this->globalFunctionsHelper->fgetcsv($this->filePointer, self::MAX_READ_BYTES_PER_LINE, $this->fieldDelimiter, $this->fieldEnclosure);
if (false === $encodedRowData) {
return false;
}
Expand Down

0 comments on commit aa25678

Please sign in to comment.