You are here

function ParserCSVIterator::__destruct in Feeds 8.2

File

lib/Drupal/feeds/ParserCSVIterator.php, line 21

Class

ParserCSVIterator
Text lines from file iterator.

Namespace

Drupal\feeds

Code

function __destruct() {
  if ($this->handle) {
    fclose($this->handle);
  }
}