Update with suggested review changes

This commit is contained in:
Rafsun Chowdhury 2019-10-05 19:47:16 +06:00 committed by GitHub
parent b3d21cb8ae
commit 59c503b1c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ abstract class WC_CSV_Exporter {
*
* @var string
*/
protected $delimiter = ",";
protected $delimiter = ',';
/**
* Prepare data that will be exported.
@ -121,7 +121,7 @@ abstract class WC_CSV_Exporter {
* Return the delimiter to use in CSV file
*
* @since 3.9.0
* @return String
* @return string
*/
public function get_delimiter() {
return apply_filters( "woocommerce_{$this->export_type}_export_delimiter", $this->delimiter );