We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92716f6 commit 5ff7570Copy full SHA for 5ff7570
src/Lexer.php
@@ -572,6 +572,7 @@ public function parseComment()
572
) {
573
$token .= $this->str[$this->last];
574
}
575
+
576
return new Token($token, Token::TYPE_COMMENT, Token::FLAG_COMMENT_BASH);
577
578
src/Utils/Formatter.php
@@ -334,7 +334,7 @@ public function formatList($list)
334
/**
335
* Token parsed at this moment.
336
*
337
- * @var Token $curr
+ * @var Token
338
*/
339
$curr = $list->tokens[$list->idx];
340
@@ -352,7 +352,7 @@ public function formatList($list)
352
353
* Previous Token.
354
355
- * @var Token $prev
356
357
if ($prev !== null) {
358
// Checking if a new clause started.
0 commit comments