1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

Fixed PHPCS errors for CommentAnalyzer (Multi-line function calls must have a trailing comma after the last parameter).

This commit is contained in:
rhertogh 2023-07-15 19:11:15 +02:00
parent 65ad2f829e
commit 8d76314a48

View File

@ -333,7 +333,7 @@ class CommentAnalyzer
$i = strpos($return_block, "\n", $i);
if ($i === false) {
throw new IncorrectDocblockException(
'Comment lines must be terminated with a new line character (\\n).'
'Comment lines must be terminated with a new line character (\\n).',
);
}