Skip to content

Commit 723bbee

Browse files
committed
Make Style_Caps_Fix::COMBINING_MARKS a private constant
1 parent 3e4d902 commit 723bbee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fixes/node-fixes/class-style-caps-fix.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Style_Caps_Fix extends Simple_Style_Fix {
6767
(?![\w' . self::COMBINING_MARKS . ']) # negative lookahead assertion
6868
/Sxu';
6969

70-
const COMBINING_MARKS = '\-_' . U::HYPHEN . U::SOFT_HYPHEN . U::ZERO_WIDTH_SPACE; // Needs to be part of character class.
70+
private const COMBINING_MARKS = '\-_' . U::HYPHEN . U::SOFT_HYPHEN . U::ZERO_WIDTH_SPACE; // Needs to be part of character class.
7171

7272
/**
7373
* Creates a new node fix with a class.

0 commit comments

Comments
 (0)