Skip to content

Commit 9a120df

Browse files
committed
And now?
1 parent 74d4450 commit 9a120df

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

src/Utils/Formatter.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ public function formatList($list)
322322
/**
323323
* Previously parsed token.
324324
*
325-
* @var Token
325+
* @var Token|null
326326
*/
327327
$prev = null;
328328

@@ -349,12 +349,9 @@ public function formatList($list)
349349
}
350350

351351
// Checking if pointers were initialized.
352-
/**
353-
* Previous Token.
354-
*
355-
* @var Token $prev
356-
*/
357352
if ($prev !== null) {
353+
/** @var Token $prev */
354+
358355
// Checking if a new clause started.
359356
if (static::isClause($prev) !== false) {
360357
$lastClause = $prev->value;

0 commit comments

Comments
 (0)