Skip to content

Commit 7453362

Browse files
committed
Fix up char.
1 parent efe9d12 commit 7453362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PhpCollective/Sniffs/Commenting/InlineDocBlockSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ protected function findErrors(File $phpCsFile, int $contentIndex, bool $isSingle
216216
}
217217

218218
if (!preg_match('|^\$[a-z0-9]+$|i', $contentMatches[3])) {
219-
$errors['order'] = 'Expected ´{Type} ${var}´, got `' . $contentMatches[1] . $contentMatches[2] . $contentMatches[3] . '`';
219+
$errors['order'] = 'Expected `{Type} ${var}`, got `' . $contentMatches[1] . $contentMatches[2] . $contentMatches[3] . '`';
220220
}
221221

222222
return $errors;

0 commit comments

Comments
 (0)