From 9180093819c92628a4bb744615db7f3c04cc1774 Mon Sep 17 00:00:00 2001 From: Jordi Date: Thu, 16 Sep 2021 12:07:35 +0200 Subject: [PATCH] Remove inherit doc --- src/Source/CsvSourceIterator.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Source/CsvSourceIterator.php b/src/Source/CsvSourceIterator.php index def516ce..4a5bc48a 100644 --- a/src/Source/CsvSourceIterator.php +++ b/src/Source/CsvSourceIterator.php @@ -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); @@ -117,9 +114,6 @@ public function next(): void } } - /** - * {@inheritdoc} - */ public function rewind(): void { $this->file = fopen($this->filename, 'r'); @@ -139,9 +133,6 @@ public function rewind(): void } } - /** - * {@inheritdoc} - */ public function valid(): bool { if (!\is_array($this->currentLine)) {