Skip to content

Commit

Permalink
Merge pull request #197 from mukuru-shaun/update-parser-token-values-…
Browse files Browse the repository at this point in the history
…to-ints

Update parser token constant values to ints instead of strings
  • Loading branch information
jaapio committed Jan 11, 2024
2 parents e03361c + 6ef1296 commit 8430ca5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Types/ContextFactory.php
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 8430ca5

Please sign in to comment.