16 lines
365 B
PHP
16 lines
365 B
PHP
<?php
|
|
/**
|
|
* Feature flag definitions for Force Refresh.
|
|
*
|
|
* Each entry maps a flag name to a boolean. Set a flag to true to enable the
|
|
* corresponding feature, or false to disable it.
|
|
*
|
|
* @package ForceRefresh
|
|
*/
|
|
|
|
return array(
|
|
'scheduledRefresh' => true,
|
|
'troubleshootingTerminal' => false,
|
|
'troubleshootingSubmitDebug' => true,
|
|
);
|