Skip to content

Commit

Permalink
[NOTICKET] correct code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Jochen Manz committed Oct 8, 2021
1 parent 65ed41f commit a77275e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/Fixer/AutomaticCommentsFixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
);

$tokens[$index] = new Token([
0 => $token->getId(),
1 => $content,
]);
0 => $token->getId(),
1 => $content,
]);
}
}

Expand Down
6 changes: 3 additions & 3 deletions src/Fixer/MultiToSingleLineAnnotationFixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ protected function applyFix(\SplFileInfo $file, Tokens $tokens): void
}

$tokens[$index] = new Token([
0 => $token->getId(),
1 => $this->collapseComment('var', $token),
]);
0 => $token->getId(),
1 => $this->collapseComment('var', $token),
]);
}
}

Expand Down

0 comments on commit a77275e

Please sign in to comment.