Skip to content

Commit

Permalink
PHP 8.0 | Tokens: add T_MATCH to $parenthesisOpeners and $scopeOpener
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Feb 22, 2021
1 parent b48d202 commit 966ae7c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Util/Tokens.php
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ final class Tokens
T_ELSEIF => T_ELSEIF,
T_CATCH => T_CATCH,
T_DECLARE => T_DECLARE,
T_MATCH => T_MATCH,
];

/**
Expand Down Expand Up @@ -418,6 +419,7 @@ final class Tokens
T_PROPERTY => T_PROPERTY,
T_OBJECT => T_OBJECT,
T_USE => T_USE,
T_MATCH => T_MATCH,
];

/**
Expand Down

0 comments on commit 966ae7c

Please sign in to comment.