Skip to content

Commit

Permalink
Remove inherit doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jordisala1991 committed Sep 16, 2021
1 parent 2af4665 commit 9180093
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/Source/CsvSourceIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,6 @@ public function key()
return $this->position;
}

/**
* {@inheritdoc}
*/
public function next(): void
{
$line = fgetcsv($this->file, 0, $this->delimiter, $this->enclosure, $this->escape);
Expand All @@ -117,9 +114,6 @@ public function next(): void
}
}

/**
* {@inheritdoc}
*/
public function rewind(): void
{
$this->file = fopen($this->filename, 'r');
Expand All @@ -139,9 +133,6 @@ public function rewind(): void
}
}

/**
* {@inheritdoc}
*/
public function valid(): bool
{
if (!\is_array($this->currentLine)) {
Expand Down

0 comments on commit 9180093

Please sign in to comment.