Skip to content

Commit 27a8445

Browse files
committed
Fixed array values (ref #2708)
1 parent 282306f commit 27a8445

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tokenizers/PHP.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1710,8 +1710,8 @@ protected function processAdditional()
17101710
$ignore += [
17111711
T_STRING => T_STRING,
17121712
T_COLON => T_COLON,
1713-
T_NS_SEPARATOR => T_COLON,
1714-
T_NULLABLE => T_COLON,
1713+
T_NS_SEPARATOR => T_NS_SEPARATOR,
1714+
T_NULLABLE => T_NULLABLE,
17151715
];
17161716

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

0 commit comments

Comments
 (0)