19 lines
284 B
PHP
19 lines
284 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
* Enable or disable backup tool polling.
|
|
*/
|
|
'polling' => true,
|
|
|
|
/*
|
|
* Interval seconds between polling requests.
|
|
*/
|
|
'polling_interval' => 1,
|
|
|
|
/*
|
|
* Queue to use for the jobs to run through.
|
|
*/
|
|
'queue' => null,
|
|
];
|