diff options
Diffstat (limited to 'src/Lexer.php')
-rw-r--r-- | src/Lexer.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Lexer.php b/src/Lexer.php index 40ed75d..17b3f35 100644 --- a/src/Lexer.php +++ b/src/Lexer.php @@ -287,19 +287,19 @@ class Lexer /** * Value to be returned. - * @var Token + * @var Token $ret */ $ret = null; /** * The value of `$this->last` where `$token` ends in `$this->str`. - * @var int + * @var int $iEnd */ $iEnd = $this->last; /** * Whether last parsed character is a whitespace. - * @var bool + * @var bool $lastSpace */ $lastSpace = false; @@ -343,13 +343,13 @@ class Lexer /** * Value to be returned. - * @var Token|bool + * @var Token $ret */ $ret = null; /** * The value of `$this->last` where `$token` ends in `$this->str`. - * @var int + * @var int $iEnd */ $iEnd = $this->last; |