File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
redux-core/inc/extensions/color_scheme/color_scheme/inc Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -26,16 +26,16 @@ class Redux_Color_Scheme_Functions {
26
26
/**
27
27
* Field ID
28
28
*
29
- * @var string
29
+ * @var string|null
30
30
*/
31
- public static string $ field_id ;
31
+ public static ? string $ field_id ;
32
32
33
33
/**
34
34
* Field class.
35
35
*
36
- * @var string
36
+ * @var string|null
37
37
*/
38
- public static string $ field_class ;
38
+ public static ? string $ field_class ;
39
39
40
40
/**
41
41
* Field array.
@@ -47,23 +47,23 @@ class Redux_Color_Scheme_Functions {
47
47
/**
48
48
* WP Upload directory.
49
49
*
50
- * @var string
50
+ * @var string|null
51
51
*/
52
- public static string $ upload_dir ;
52
+ public static ? string $ upload_dir = '' ;
53
53
54
54
/**
55
55
* WP Upload URI
56
56
*
57
- * @var string
57
+ * @var string|null
58
58
*/
59
- public static string $ upload_url ;
59
+ public static ? string $ upload_url = '' ;
60
60
61
61
/**
62
62
* Select fields.
63
63
*
64
- * @var array
64
+ * @var array|null
65
65
*/
66
- public static array $ select ;
66
+ public static ? array $ select ;
67
67
68
68
/**
69
69
* Class init.
You can’t perform that action at this time.
0 commit comments