Passed
Push — master ( e7c89c...d9a062 )
by Sebastian
06:11 queued 12s
created
src/Mailcode/Translator/Syntax/ApacheVelocity.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
 abstract class Mailcode_Translator_Syntax_ApacheVelocity extends Mailcode_Translator_Command
25 25
 {
26 26
     /**
27
-    * @var string[]
28
-    */
27
+     * @var string[]
28
+     */
29 29
     private array $regexSpecialChars = array(
30 30
         '?',
31 31
         '.',
@@ -50,15 +50,15 @@  discard block
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-    * Filters the string for use in an Apache Velocity (Java)
54
-    * regex string: escapes all special characters.
55
-    *
56
-    * Velocity does its own escaping, so no need to escape special
57
-    * characters as if they were a javascript string.
58
-    *
59
-    * @param string $string
60
-    * @return string
61
-    */
53
+     * Filters the string for use in an Apache Velocity (Java)
54
+     * regex string: escapes all special characters.
55
+     *
56
+     * Velocity does its own escaping, so no need to escape special
57
+     * characters as if they were a javascript string.
58
+     *
59
+     * @param string $string
60
+     * @return string
61
+     */
62 62
     public function filterRegexString(string $string) : string
63 63
     {
64 64
         // Special case: previously escaped quotes.
Please login to merge, or discard this patch.