@@ -11,14 +11,14 @@ final class RendererConstant
1111 *
1212 * @var string
1313 */
14- const RENDERER_NAMESPACE = __NAMESPACE__ ;
14+ public const RENDERER_NAMESPACE = __NAMESPACE__ ;
1515
1616 /**
1717 * Available renderer types.
1818 *
1919 * @var string[]
2020 */
21- const RENDERER_TYPES = ['Html ' , 'Text ' ];
21+ public const RENDERER_TYPES = ['Html ' , 'Text ' ];
2222
2323 /**
2424 * Closures that are used to enclose different parts in string.
@@ -28,21 +28,21 @@ final class RendererConstant
2828 *
2929 * @var string[]
3030 */
31- const HTML_CLOSURES = ["\u{fcffc}\u{ff2fb}" , "\u{fff41}\u{fcffc}" ];
31+ public const HTML_CLOSURES = ["\u{fcffc}\u{ff2fb}" , "\u{fff41}\u{fcffc}" ];
3232
3333 /**
3434 * Closures that are used to enclose deleted chars in output HTML.
3535 *
3636 * @var string[]
3737 */
38- const HTML_CLOSURES_DEL = ['<del> ' , '</del> ' ];
38+ public const HTML_CLOSURES_DEL = ['<del> ' , '</del> ' ];
3939
4040 /**
4141 * Closures that are used to enclose inserted chars in output HTML.
4242 *
4343 * @var string[]
4444 */
45- const HTML_CLOSURES_INS = ['<ins> ' , '</ins> ' ];
45+ public const HTML_CLOSURES_INS = ['<ins> ' , '</ins> ' ];
4646
4747 /**
4848 * The delimiter to be used as the glue in string/array functions.
@@ -52,7 +52,7 @@ final class RendererConstant
5252 *
5353 * @var string
5454 */
55- const IMPLODE_DELIMITER = "\u{ff2fa}\u{fcffc}\u{fff42}" ;
55+ public const IMPLODE_DELIMITER = "\u{ff2fa}\u{fcffc}\u{fff42}" ;
5656
5757 /**
5858 * Regex range for punctuations.
@@ -61,7 +61,7 @@ final class RendererConstant
6161 *
6262 * @var string
6363 */
64- const PUNCTUATIONS_RANGE = (
64+ public const PUNCTUATIONS_RANGE = (
6565 // Latin-1 Supplement
6666 // @see https://unicode-table.com/en/blocks/latin-1-supplement/
6767 "\u{0080}- \u{00BB}" .
@@ -98,19 +98,19 @@ final class RendererConstant
9898 *
9999 * @var int
100100 */
101- const CLI_COLOR_AUTO = -1 ;
101+ public const CLI_COLOR_AUTO = -1 ;
102102
103103 /**
104104 * Force not to colorize the CLI output.
105105 *
106106 * @var int
107107 */
108- const CLI_COLOR_DISABLE = 0 ;
108+ public const CLI_COLOR_DISABLE = 0 ;
109109
110110 /**
111111 * Force to colorize the CLI output if possible.
112112 *
113113 * @var int
114114 */
115- const CLI_COLOR_ENABLE = 1 ;
115+ public const CLI_COLOR_ENABLE = 1 ;
116116}
0 commit comments