File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ class DeprecationErrorHandler
27
27
/**
28
28
* @deprecated since Symfony 4.3, use max[self]=0 instead
29
29
*/
30
- const MODE_WEAK_VENDORS = 'weak_vendors ' ;
30
+ public const MODE_WEAK_VENDORS = 'weak_vendors ' ;
31
31
32
- const MODE_DISABLED = 'disabled ' ;
33
- const MODE_WEAK = 'max[total]=999999&verbose=0 ' ;
34
- const MODE_STRICT = 'max[total]=0 ' ;
32
+ public const MODE_DISABLED = 'disabled ' ;
33
+ public const MODE_WEAK = 'max[total]=999999&verbose=0 ' ;
34
+ public const MODE_STRICT = 'max[total]=0 ' ;
35
35
36
36
private $ mode ;
37
37
private $ configuration ;
Original file line number Diff line number Diff line change 21
21
*/
22
22
class Deprecation
23
23
{
24
- const PATH_TYPE_VENDOR = 'path_type_vendor ' ;
25
- const PATH_TYPE_SELF = 'path_type_internal ' ;
26
- const PATH_TYPE_UNDETERMINED = 'path_type_undetermined ' ;
27
-
28
- const TYPE_SELF = 'type_self ' ;
29
- const TYPE_DIRECT = 'type_direct ' ;
30
- const TYPE_INDIRECT = 'type_indirect ' ;
31
- const TYPE_UNDETERMINED = 'type_undetermined ' ;
24
+ public const PATH_TYPE_VENDOR = 'path_type_vendor ' ;
25
+ public const PATH_TYPE_SELF = 'path_type_internal ' ;
26
+ public const PATH_TYPE_UNDETERMINED = 'path_type_undetermined ' ;
27
+
28
+ public const TYPE_SELF = 'type_self ' ;
29
+ public const TYPE_DIRECT = 'type_direct ' ;
30
+ public const TYPE_INDIRECT = 'type_indirect ' ;
31
+ public const TYPE_UNDETERMINED = 'type_undetermined ' ;
32
32
33
33
private $ trace = [];
34
34
private $ message ;
You can’t perform that action at this time.
0 commit comments