@@ -26,37 +26,37 @@ class NumberToLocalizedStringTransformer implements DataTransformerInterface
26
26
/**
27
27
* @deprecated since Symfony 5.1, use \NumberFormatter::ROUND_CEILING instead.
28
28
*/
29
- const ROUND_CEILING = \NumberFormatter::ROUND_CEILING ;
29
+ public const ROUND_CEILING = \NumberFormatter::ROUND_CEILING ;
30
30
31
31
/**
32
32
* @deprecated since Symfony 5.1, use \NumberFormatter::ROUND_FLOOR instead.
33
33
*/
34
- const ROUND_FLOOR = \NumberFormatter::ROUND_FLOOR ;
34
+ public const ROUND_FLOOR = \NumberFormatter::ROUND_FLOOR ;
35
35
36
36
/**
37
37
* @deprecated since Symfony 5.1, use \NumberFormatter::ROUND_UP instead.
38
38
*/
39
- const ROUND_UP = \NumberFormatter::ROUND_UP ;
39
+ public const ROUND_UP = \NumberFormatter::ROUND_UP ;
40
40
41
41
/**
42
42
* @deprecated since Symfony 5.1, use \NumberFormatter::ROUND_DOWN instead.
43
43
*/
44
- const ROUND_DOWN = \NumberFormatter::ROUND_DOWN ;
44
+ public const ROUND_DOWN = \NumberFormatter::ROUND_DOWN ;
45
45
46
46
/**
47
47
* @deprecated since Symfony 5.1, use \NumberFormatter::ROUND_HALFEVEN instead.
48
48
*/
49
- const ROUND_HALF_EVEN = \NumberFormatter::ROUND_HALFEVEN ;
49
+ public const ROUND_HALF_EVEN = \NumberFormatter::ROUND_HALFEVEN ;
50
50
51
51
/**
52
52
* @deprecated since Symfony 5.1, use \NumberFormatter::ROUND_HALFUP instead.
53
53
*/
54
- const ROUND_HALF_UP = \NumberFormatter::ROUND_HALFUP ;
54
+ public const ROUND_HALF_UP = \NumberFormatter::ROUND_HALFUP ;
55
55
56
56
/**
57
57
* @deprecated since Symfony 5.1, use \NumberFormatter::ROUND_HALFDOWN instead.
58
58
*/
59
- const ROUND_HALF_DOWN = \NumberFormatter::ROUND_HALFDOWN ;
59
+ public const ROUND_HALF_DOWN = \NumberFormatter::ROUND_HALFDOWN ;
60
60
61
61
protected $ grouping ;
62
62
0 commit comments