mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 08:36:39 +00:00
made _enclose_value protected
This commit is contained in:
@@ -1060,12 +1060,12 @@ class parseCSV {
|
||||
* Enclose values if needed
|
||||
* - only used by unparse()
|
||||
*
|
||||
* @access public
|
||||
* @access protected
|
||||
* @param value string to process
|
||||
*
|
||||
* @return Processed value
|
||||
*/
|
||||
public function _enclose_value ($value = null, $delimiter = null) {
|
||||
protected function _enclose_value ($value = null, $delimiter = null) {
|
||||
if ( $delimiter === null ) {
|
||||
$delimiter = $this->delimiter;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user