From b05ce01d3cf307aa8d8da568141db051cd9427d9 Mon Sep 17 00:00:00 2001 From: madflow Date: Tue, 12 Jun 2018 07:45:07 +0200 Subject: [PATCH] delete unused ReaderOptions --- src/Spout/Reader/Common/ReaderOptions.php | 58 ----------------------- 1 file changed, 58 deletions(-) delete mode 100644 src/Spout/Reader/Common/ReaderOptions.php diff --git a/src/Spout/Reader/Common/ReaderOptions.php b/src/Spout/Reader/Common/ReaderOptions.php deleted file mode 100644 index 1540b1c..0000000 --- a/src/Spout/Reader/Common/ReaderOptions.php +++ /dev/null @@ -1,58 +0,0 @@ -shouldFormatDates; - } - - /** - * Sets whether date/time values should be returned as PHP objects or be formatted as strings. - * - * @param bool $shouldFormatDates - * @return ReaderOptions - */ - public function setShouldFormatDates($shouldFormatDates) - { - $this->shouldFormatDates = $shouldFormatDates; - - return $this; - } - - /** - * @return bool Whether empty rows should be returned or skipped. - */ - public function shouldPreserveEmptyRows() - { - return $this->shouldPreserveEmptyRows; - } - - /** - * Sets whether empty rows should be returned or skipped. - * - * @param bool $shouldPreserveEmptyRows - * @return ReaderOptions - */ - public function setShouldPreserveEmptyRows($shouldPreserveEmptyRows) - { - $this->shouldPreserveEmptyRows = $shouldPreserveEmptyRows; - - return $this; - } -}