Skip to content

Commit

Permalink
Changelog + test fixes for #2639 (ref #2638)
Browse files Browse the repository at this point in the history
  • Loading branch information
gsherwood committed Oct 30, 2019
1 parent 216455e commit 7f1ee75
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions package.xml
Expand Up @@ -26,6 +26,8 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt">BSD 3-Clause License</license>
<notes>
- Fixed bug #2638 : Squiz.CSS.DuplicateClassDefinitionSniff sees comments as part of the class name
-- Thanks to Raphael Horber for the patch
- Fixed bug #2674 : Squiz.Functions.FunctionDeclarationArgumentSpacing prints wrong argument name in error message
</notes>
<contents>
Expand Down
Expand Up @@ -74,30 +74,30 @@

/* print comment */
@media print {
/* any comment */
/* comment1 */
td {
}

/* any comment */
/* comment2 */
img {
}

/* any comment */
/* comment3 */
td {
}
}

@media handheld /* handheld comment */
{
td /* any comment */
td /* comment1 */
{
}

img /* any comment */
img /* comment2 */
{
}

td /* any comment */
td /* comment3 */
{
}
}

0 comments on commit 7f1ee75

Please sign in to comment.