File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
user_guide_src/source/changelogs Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,19 @@ class CLI
42
42
* Is the readline library on the system?
43
43
*
44
44
* @var bool
45
+ *
46
+ * @deprecated 4.4.2 Should be protected.
47
+ * @TODO Fix to camelCase in the next major version.
45
48
*/
46
49
public static $ readline_support = false ;
47
50
48
51
/**
49
52
* The message displayed at prompts.
50
53
*
51
54
* @var string
55
+ *
56
+ * @deprecated 4.4.2 Should be protected.
57
+ * @TODO Fix to camelCase in the next major version.
52
58
*/
53
59
public static $ wait_msg = 'Press any key to continue... ' ;
54
60
@@ -63,6 +69,8 @@ class CLI
63
69
* Foreground color list
64
70
*
65
71
* @var array<string, string>
72
+ *
73
+ * @TODO Fix to camelCase in the next major version.
66
74
*/
67
75
protected static $ foreground_colors = [
68
76
'black ' => '0;30 ' ,
@@ -88,6 +96,8 @@ class CLI
88
96
* Background color list
89
97
*
90
98
* @var array<string, string>
99
+ *
100
+ * @TODO Fix to camelCase in the next major version.
91
101
*/
92
102
protected static $ background_colors = [
93
103
'black ' => '40 ' ,
Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ Deprecations
32
32
- **Filters: ** The Auto-Discovery for Filters and ``Filters::discoverFilters() ``
33
33
is deprecated. Use :ref: `registrars ` instead. See :ref: `modules-filters ` for
34
34
details.
35
+ - **CLI: ** The public property ``CLI::$readline_support `` and ``CLI::$wait_msg ``
36
+ are deprecated. These methods will be protected.
35
37
36
38
Bugs Fixed
37
39
**********
You can’t perform that action at this time.
0 commit comments