@@ -486,7 +486,7 @@ discard block |
||
486 | 486 | * @param array $data Array of data |
487 | 487 | * @param string $delimiter Delimiter for export type 'sv' |
488 | 488 | * |
489 | - * @return bool |
|
489 | + * @return false|string |
|
490 | 490 | */ |
491 | 491 | public function build_sv ( $data = null, $delimiter = null ) { |
492 | 492 | if ( !empty( $data ) ) |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | /** |
551 | 551 | * @param array $data Array of data |
552 | 552 | * |
553 | - * @return bool |
|
553 | + * @return false|string |
|
554 | 554 | */ |
555 | 555 | public function build_xml ( $data = null ) { |
556 | 556 | if ( !empty( $data ) ) |
@@ -1108,7 +1108,7 @@ discard block |
||
1108 | 1108 | * @param array $data Data to export. |
1109 | 1109 | * @param bool $single Whether this is a single item export. |
1110 | 1110 | * |
1111 | - * @return mixed |
|
1111 | + * @return string |
|
1112 | 1112 | */ |
1113 | 1113 | public static function export_data_to_file( $file, $data, $single = false ) { |
1114 | 1114 |