|
4 | 4 |
|
5 | 5 | return [
|
6 | 6 |
|
7 |
| - /** |
8 |
| - * Method to use to iterate with the query results. |
9 |
| - * Options: lazy, cursor |
10 |
| - * |
11 |
| - * @link https://laravel.com/docs/eloquent#cursors |
12 |
| - * @link https://laravel.com/docs/eloquent#chunking-using-lazy-collections |
13 |
| - */ |
| 7 | + /* |
| 8 | + |-------------------------------------------------------------------------- |
| 9 | + | Method |
| 10 | + |-------------------------------------------------------------------------- |
| 11 | + | |
| 12 | + | Method to use to iterate with the query results. |
| 13 | + | Options: lazy, cursor |
| 14 | + | |
| 15 | + | @link https://laravel.com/docs/eloquent#cursors |
| 16 | + | @link https://laravel.com/docs/eloquent#chunking-using-lazy-collections |
| 17 | + | |
| 18 | + */ |
14 | 19 | 'method' => 'lazy',
|
15 | 20 |
|
16 |
| - /** |
17 |
| - * Chunk size to be used when using lazy method. |
18 |
| - */ |
| 21 | + /* |
| 22 | + |-------------------------------------------------------------------------- |
| 23 | + | Chunk Size |
| 24 | + |-------------------------------------------------------------------------- |
| 25 | + | |
| 26 | + | Chunk size to be used when using lazy method. |
| 27 | + | |
| 28 | + */ |
19 | 29 | 'chunk' => 1000,
|
20 | 30 |
|
21 |
| - /** |
22 |
| - * Default export format for date. |
23 |
| - */ |
| 31 | + /* |
| 32 | + |-------------------------------------------------------------------------- |
| 33 | + | Default Date Format |
| 34 | + |-------------------------------------------------------------------------- |
| 35 | + | |
| 36 | + | Default export format for date. |
| 37 | + | |
| 38 | + */ |
24 | 39 | 'default_date_format' => 'yyyy-mm-dd',
|
25 | 40 |
|
26 |
| - /** |
27 |
| - * List of valid date formats to be used for auto-detection. |
28 |
| - */ |
| 41 | + /* |
| 42 | + |-------------------------------------------------------------------------- |
| 43 | + | Valid Date Formats |
| 44 | + |-------------------------------------------------------------------------- |
| 45 | + | |
| 46 | + | List of valid date formats to be used for auto-detection. |
| 47 | + | |
| 48 | + */ |
29 | 49 | 'date_formats' => [
|
30 | 50 | 'mm/dd/yyyy',
|
31 | 51 | NumberFormat::FORMAT_DATE_DATETIME,
|
|
51 | 71 | NumberFormat::FORMAT_DATE_YYYYMMDDSLASH,
|
52 | 72 | ],
|
53 | 73 |
|
54 |
| - /** |
55 |
| - * Purge all exported by purge.days old files. |
56 |
| - */ |
| 74 | + /* |
| 75 | + |-------------------------------------------------------------------------- |
| 76 | + | Purge Options |
| 77 | + |-------------------------------------------------------------------------- |
| 78 | + | |
| 79 | + | Purge all exported by purge.days old files. |
| 80 | + | |
| 81 | + */ |
57 | 82 | 'purge' => [
|
58 | 83 | 'days' => 1,
|
59 | 84 | ],
|
|
0 commit comments