From 0c9b3c08b7dbf8045d64e559a2b934b8c520d72e Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 26 Jun 2019 10:33:58 +0200 Subject: [PATCH] [Bridge/PhpUnit] Fix PHP5.5 compat --- .../DeprecationErrorHandler/Deprecation.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler/Deprecation.php b/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler/Deprecation.php index b70d7c262e..6d5b39fd54 100644 --- a/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler/Deprecation.php +++ b/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler/Deprecation.php @@ -18,14 +18,14 @@ use Symfony\Bridge\PhpUnit\Legacy\SymfonyTestsListenerFor; */ class Deprecation { - private const PATH_TYPE_VENDOR = 'path_type_vendor'; - private const PATH_TYPE_SELF = 'path_type_internal'; - private const PATH_TYPE_UNDETERMINED = 'path_type_undetermined'; + const PATH_TYPE_VENDOR = 'path_type_vendor'; + const PATH_TYPE_SELF = 'path_type_internal'; + const PATH_TYPE_UNDETERMINED = 'path_type_undetermined'; - public const TYPE_SELF = 'type_self'; - public const TYPE_DIRECT = 'type_direct'; - public const TYPE_INDIRECT = 'type_indirect'; - public const TYPE_UNDETERMINED = 'type_undetermined'; + const TYPE_SELF = 'type_self'; + const TYPE_DIRECT = 'type_direct'; + const TYPE_INDIRECT = 'type_indirect'; + const TYPE_UNDETERMINED = 'type_undetermined'; /** * @var array