Skip to content

Commit c93066f

Browse files
committed
Merge branch 'feature/token-constants-fix-values-x-3' of https://github.com/jrfnl/PHP_CodeSniffer
2 parents bc77025 + 10559a3 commit c93066f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Util/Tokens.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@
7474
define('T_CLOSE_USE_GROUP', 'PHPCS_T_CLOSE_USE_GROUP');
7575
define('T_ZSR', 'PHPCS_T_ZSR');
7676
define('T_ZSR_EQUAL', 'PHPCS_T_ZSR_EQUAL');
77-
define('T_FN_ARROW', 'T_FN_ARROW');
78-
define('T_TYPE_UNION', 'T_TYPE_UNION');
79-
define('T_PARAM_NAME', 'T_PARAM_NAME');
77+
define('T_FN_ARROW', 'PHPCS_T_FN_ARROW');
78+
define('T_TYPE_UNION', 'PHPCS_T_TYPE_UNION');
79+
define('T_PARAM_NAME', 'PHPCS_T_PARAM_NAME');
8080

8181
// Some PHP 5.5 tokens, replicated for lower versions.
8282
if (defined('T_FINALLY') === false) {

0 commit comments

Comments
 (0)