From 0d5ae35a34e2c6cc58ed335d39fa9ecff35a9986 Mon Sep 17 00:00:00 2001 From: William Knauss Date: Thu, 5 Jun 2014 20:15:20 -0400 Subject: [PATCH] made _check_count protected --- parsecsv.lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parsecsv.lib.php b/parsecsv.lib.php index 4143f62..15fb6d0 100644 --- a/parsecsv.lib.php +++ b/parsecsv.lib.php @@ -1103,7 +1103,7 @@ class parseCSV { * Check if passed info might be delimiter * Only used by find_delimiter * - * @access public + * @access protected * @param [type] $char [description] * @param [type] $array [description] * @param [type] $depth [description] @@ -1111,7 +1111,7 @@ class parseCSV { * * @return special string used for delimiter selection, or false */ - public function _check_count ($char, $array, $depth, $preferred) { + protected function _check_count ($char, $array, $depth, $preferred) { if ( $depth == count($array) ) { $first = null; $equal = null;