Skip to content

Commit

Permalink
Update parser token constant values to ints instead of strings
Browse files Browse the repository at this point in the history
  • Loading branch information
mukuru-shaun committed Jan 10, 2024
1 parent e03361c commit 6ef1296
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Types/ContextFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
use const T_USE;

if (!defined('T_NAME_QUALIFIED')) {
define('T_NAME_QUALIFIED', 'T_NAME_QUALIFIED');
define('T_NAME_QUALIFIED', 10001);
}

if (!defined('T_NAME_FULLY_QUALIFIED')) {
define('T_NAME_FULLY_QUALIFIED', 'T_NAME_FULLY_QUALIFIED');
define('T_NAME_FULLY_QUALIFIED', 10002);
}

/**
Expand Down

0 comments on commit 6ef1296

Please sign in to comment.