#3236 Added missing config definitions (private statics)

This commit is contained in:
Jackson Darlow 2020-06-11 13:34:45 +12:00
parent ea7e0e8e3b
commit dfc01457d6
2 changed files with 17 additions and 0 deletions

View File

@ -4,6 +4,7 @@ namespace SilverStripe\Core\Manifest;
use SilverStripe\Core\Config\Config;
use Psr\SimpleCache\CacheInterface;
use SilverStripe\Core\Config\Configurable;
use SilverStripe\Core\Convert;
use SilverStripe\Core\Injector\Injector;
@ -24,6 +25,13 @@ use SilverStripe\Core\Injector\Injector;
*/
class VersionProvider
{
use Configurable;
/**
* @var array
*/
private static $modules;
/**
* Gets a comma delimited string of package titles and versions
*

View File

@ -107,6 +107,15 @@ abstract class DBField extends ViewableData implements DBIndexable
*/
private static $index = false;
/**
* The filters to be used by graphql form field front-end
*
* e.g [ contains, gt, lt, gte, lte ]
*
* @var array
*/
private static $graphql_default_filters;
private static $casting = [
'ATT' => 'HTMLFragment',
'CDATA' => 'HTMLFragment',