generated from glhd/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.php
More file actions
47 lines (41 loc) · 1.47 KB
/
config.php
File metadata and controls
47 lines (41 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
return [
/*
|--------------------------------------------------------------------------
| Collect Exceptions
|--------------------------------------------------------------------------
|
| By default, Conveyor Belt will throw an exception as soon as it's
| triggered unless you set the `$collect_exceptions` property to `true` on
| your Artisan command. You can change the default behavior here.
|
*/
'collect_exceptions' => false,
/*
|--------------------------------------------------------------------------
| Chunk Size
|--------------------------------------------------------------------------
|
| By default, Conveyor Belt will run your queries in 1000 record chunks.
| You can change the default chunk size here.
|
*/
'chunk_count' => 1000,
/*
|--------------------------------------------------------------------------
| Progress Bar Format
|--------------------------------------------------------------------------
|
| The default Conveyor Belt progress bar will show a detailed summary
| of your command's progress. You can update the format used here.
|
| See: https://symfony.com/doc/current/components/console/helpers/progressbar.html#custom-formats
|
*/
'progress_formats' => [
'base' => '%bar% %current% %message%',
'base_with_memory' => '%bar% %current% (%memory%) %message%',
'count' => '%bar% %current%/%max% (~%remaining%) %message%',
'count_with_memory' => '%bar% %current%/%max% (%memory%, ~%remaining%) %message%',
],
];