Review the proposed patch then download it to apply it manually or execute the following command from the repository root directory:
curl https://fabbot.io/patch/FriendsOfPHP/PHP-CS-Fixer/4649/042cb0d938c950c22cfae9428355830b33d41470/cs.diff | patch -p0
diff -ru src/Tokenizer/Analyzer/CommentsAnalyzer.php src/Tokenizer/Analyzer/CommentsAnalyzer.php
--- src/Tokenizer/Analyzer/CommentsAnalyzer.php 2021-01-24 21:38:55.121200479 +0000
+++ src/Tokenizer/Analyzer/CommentsAnalyzer.php 2021-01-24 21:38:55.960172116 +0000
@@ -196,8 +196,8 @@
$token = $tokens[$index];
if (
- $token->isGivenKind(T_VARIABLE) &&
- false !== strpos($docsContent, $token->getContent())
+ $token->isGivenKind(T_VARIABLE)
+ && false !== strpos($docsContent, $token->getContent())
) {
return true;
}