diff options
Diffstat (limited to 'src/Reader.php')
-rw-r--r-- | src/Reader.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/Reader.php b/src/Reader.php index 473aa7c..ff90e15 100644 --- a/src/Reader.php +++ b/src/Reader.php @@ -187,25 +187,6 @@ class Reader extends AbstractCsv /** * Return a single column from the CSV data * - * DEPRECATION WARNING! This method will be removed in the next major point release - * - * @deprecated deprecated since version 5.4 - * - * @param integer $column_index field Index - * @param callable $callable a callable function to be applied to each value to be return - * - * @return array - * - * @throws \InvalidArgumentException If the column index is not a positive integer or 0 - */ - public function fetchCol($column_index = 0, callable $callable = null) - { - return $this->fetchColumn($column_index, $callable); - } - - /** - * Return a single column from the CSV data - * * @param integer $column_index field Index * @param callable $callable a callable function to be applied to each value to be return * @@ -232,14 +213,4 @@ class Reader extends AbstractCsv return iterator_to_array($iterator, false); } - - /** - * DEPRECATION WARNING! This method will be removed in the next major point release - * - * @deprecated deprecated since version 5.5 - */ - public function getWriter($open_mode = 'r+') - { - return $this->newWriter($open_mode); - } } |