@@ -20,9 +20,9 @@ discard block |
||
20 | 20 | */ |
21 | 21 | abstract class Mailcode_Translator_Syntax_ApacheVelocity extends Mailcode_Translator_Command |
22 | 22 | { |
23 | - /** |
|
24 | - * @var string[] |
|
25 | - */ |
|
23 | + /** |
|
24 | + * @var string[] |
|
25 | + */ |
|
26 | 26 | private $regexSpecialChars = array( |
27 | 27 | '?', |
28 | 28 | '.', |
@@ -41,13 +41,13 @@ discard block |
||
41 | 41 | ')' |
42 | 42 | ); |
43 | 43 | |
44 | - /** |
|
45 | - * Filters the string for use in an Apache Velocity (Java) |
|
46 | - * regex string: escapes all special characters. |
|
47 | - * |
|
48 | - * @param string $string |
|
49 | - * @return string |
|
50 | - */ |
|
44 | + /** |
|
45 | + * Filters the string for use in an Apache Velocity (Java) |
|
46 | + * regex string: escapes all special characters. |
|
47 | + * |
|
48 | + * @param string $string |
|
49 | + * @return string |
|
50 | + */ |
|
51 | 51 | protected function filterRegexString(string $string) : string |
52 | 52 | { |
53 | 53 | // Special case: previously escaped quotes. |