Skip to content

Commit 0c9b3c0

Browse files
[Bridge/PhpUnit] Fix PHP5.5 compat
1 parent 64b68d4 commit 0c9b3c0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler/Deprecation.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
*/
1919
class Deprecation
2020
{
21-
private const PATH_TYPE_VENDOR = 'path_type_vendor';
22-
private const PATH_TYPE_SELF = 'path_type_internal';
23-
private const PATH_TYPE_UNDETERMINED = 'path_type_undetermined';
24-
25-
public const TYPE_SELF = 'type_self';
26-
public const TYPE_DIRECT = 'type_direct';
27-
public const TYPE_INDIRECT = 'type_indirect';
28-
public const TYPE_UNDETERMINED = 'type_undetermined';
21+
const PATH_TYPE_VENDOR = 'path_type_vendor';
22+
const PATH_TYPE_SELF = 'path_type_internal';
23+
const PATH_TYPE_UNDETERMINED = 'path_type_undetermined';
24+
25+
const TYPE_SELF = 'type_self';
26+
const TYPE_DIRECT = 'type_direct';
27+
const TYPE_INDIRECT = 'type_indirect';
28+
const TYPE_UNDETERMINED = 'type_undetermined';
2929

3030
/**
3131
* @var array

0 commit comments

Comments
 (0)