Skip to content

Commit

Permalink
Coding standard fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gsherwood committed Nov 19, 2019
1 parent 5ef97a2 commit 15acf50
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Tokenizers/PHP.php
Original file line number Diff line number Diff line change
Expand Up @@ -1708,10 +1708,10 @@ protected function processAdditional()
if ($this->tokens[$x]['code'] === T_OPEN_PARENTHESIS) {
$ignore = Util\Tokens::$emptyTokens;
$ignore += [
T_STRING => T_STRING,
T_COLON => T_COLON,
T_NS_SEPARATOR => T_COLON,
T_NULLABLE => T_COLON,
T_STRING => T_STRING,
T_COLON => T_COLON,
T_NS_SEPARATOR => T_COLON,
T_NULLABLE => T_COLON,
];

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

0 comments on commit 15acf50

Please sign in to comment.