Contao\Fixtures\Config::get PHP Method

get() public static method

public static get ( $key )
    public static function get($key)
    {
        if (isset($GLOBALS['TL_CONFIG'][$key])) {
            return $GLOBALS['TL_CONFIG'][$key];
        }
        return null;
    }