Skip to content

Commit 5ff7570

Browse files
committed
Run php-cs-fixer
Signed-off-by: Michal Čihař <michal@cihar.com>
1 parent 92716f6 commit 5ff7570

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Lexer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,7 @@ public function parseComment()
572572
) {
573573
$token .= $this->str[$this->last];
574574
}
575+
575576
return new Token($token, Token::TYPE_COMMENT, Token::FLAG_COMMENT_BASH);
576577
}
577578

src/Utils/Formatter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ public function formatList($list)
334334
/**
335335
* Token parsed at this moment.
336336
*
337-
* @var Token $curr
337+
* @var Token
338338
*/
339339
$curr = $list->tokens[$list->idx];
340340

@@ -352,7 +352,7 @@ public function formatList($list)
352352
/**
353353
* Previous Token.
354354
*
355-
* @var Token $prev
355+
* @var Token
356356
*/
357357
if ($prev !== null) {
358358
// Checking if a new clause started.

0 commit comments

Comments
 (0)