Skip to content

Commit

Permalink
Fixed array values (ref #2708)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsherwood committed Nov 19, 2019
1 parent 282306f commit 27a8445
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tokenizers/PHP.php
Original file line number Diff line number Diff line change
Expand Up @@ -1710,8 +1710,8 @@ protected function processAdditional()
$ignore += [
T_STRING => T_STRING,
T_COLON => T_COLON,
T_NS_SEPARATOR => T_COLON,
T_NULLABLE => T_COLON,
T_NS_SEPARATOR => T_NS_SEPARATOR,
T_NULLABLE => T_NULLABLE,
];

$closer = $this->tokens[$x]['parenthesis_closer'];
Expand Down

0 comments on commit 27a8445

Please sign in to comment.