Skip to content

Commit

Permalink
add since
Browse files Browse the repository at this point in the history
  • Loading branch information
nadar committed Nov 10, 2020
1 parent 04c889d commit 079ab15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/helpers/ExportHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ExportHelper
* @param array|QueryInterface $input The data to export into a csv
* @param array $keys Defines which keys should be packed into the generated CSV. The defined keys does not change the sort behavior of the generated csv.
* @param string $header Whether the column name should be set as header inside the csv or not.
* @param array $options Options
* @param array $options Options {@since 1.8.0}
* + `sort`: boolean, whether they row should be sorted by its keys, default is true.
* @return string The generated CSV as string.
*/
Expand All @@ -39,7 +39,7 @@ public static function csv($input, array $keys = [], $header = true, array $opti
* @param array|QueryInterface $input
* @param array $keys Defines which keys should be packed into the generated xlsx. The defined keys does not change the sort behavior of the generated xls.
* @param bool $header
* @param array $options Options
* @param array $options Options {@since 1.8.0}
* + `sort`: boolean, whether they row should be sorted by its keys, default is true.
* @return mixed
* @throws Exception
Expand Down Expand Up @@ -80,7 +80,7 @@ protected static function transformInput($input)
* @param string $delimiter
* @param array $keys
* @param bool $generateHeader
* @param array $options Options
* @param array $options Options {@since 1.8.0}
* + `sort`: boolean, whether they row should be sorted by its keys, default is true.
* @return array
* @throws Exception
Expand Down

0 comments on commit 079ab15

Please sign in to comment.