mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
made _check_count protected
This commit is contained in:
@@ -1103,7 +1103,7 @@ class parseCSV {
|
|||||||
* Check if passed info might be delimiter
|
* Check if passed info might be delimiter
|
||||||
* Only used by find_delimiter
|
* Only used by find_delimiter
|
||||||
*
|
*
|
||||||
* @access public
|
* @access protected
|
||||||
* @param [type] $char [description]
|
* @param [type] $char [description]
|
||||||
* @param [type] $array [description]
|
* @param [type] $array [description]
|
||||||
* @param [type] $depth [description]
|
* @param [type] $depth [description]
|
||||||
@@ -1111,7 +1111,7 @@ class parseCSV {
|
|||||||
*
|
*
|
||||||
* @return special string used for delimiter selection, or false
|
* @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) ) {
|
if ( $depth == count($array) ) {
|
||||||
$first = null;
|
$first = null;
|
||||||
$equal = null;
|
$equal = null;
|
||||||
|
|||||||
Reference in New Issue
Block a user