Skip to content

Commit 78ed7b8

Browse files
committed
Docs: and some more minor fixes
1 parent 9b2be15 commit 78ed7b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Tokenizers/PHP.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ class PHP extends Tokenizer
291291
* from the scopeOpeners array. The data is duplicated here to
292292
* save time during parsing of the file.
293293
*
294-
* @var array
294+
* @var array<int|string, int|string>
295295
*/
296296
public $endScopeTokens = [
297297
T_CLOSE_CURLY_BRACKET => T_CLOSE_CURLY_BRACKET,

src/Tokenizers/Tokenizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ abstract class Tokenizer
5454
/**
5555
* A list of tokens that end the scope.
5656
*
57-
* @var array
57+
* @var array<int|string, int|string>
5858
*/
5959
public $endScopeTokens = [];
6060

0 commit comments

Comments
 (0)