| 1 |
<?php |
| 2 |
/** |
| 3 |
* Feature flag definitions for Force Refresh. |
| 4 |
* |
| 5 |
* Each entry maps a flag name to a boolean. Set a flag to true to enable the |
| 6 |
* corresponding feature, or false to disable it. |
| 7 |
* |
| 8 |
* @package ForceRefresh |
| 9 |
*/ |
| 10 |
|
| 11 |
return array( |
| 12 |
'scheduledRefresh' => true, |
| 13 |
'troubleshootingTerminal' => false, |
| 14 |
'troubleshootingSubmitDebug' => true, |
| 15 |
); |
| 16 |
|