Test Failed
Push — master ( 9ff364...742ef2 )
by Sebastian
03:58
created
src/Mailcode/Parser/Statement/Validator.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
  */
29 29
 class Mailcode_Parser_Statement_Validator
30 30
 {
31
-   /**
32
-    * @var Mailcode_Parser_Statement
33
-    */
31
+    /**
32
+     * @var Mailcode_Parser_Statement
33
+     */
34 34
     private $statement;
35 35
     
36 36
     public function __construct(Mailcode_Parser_Statement $statement)
@@ -38,24 +38,24 @@  discard block
 block discarded – undo
38 38
         $this->statement = $statement;
39 39
     }
40 40
     
41
-   /**
42
-    * Creates a variable validator: checks whether a single
43
-    * variable token is present in the parameters.
44
-    * 
45
-    * @return Mailcode_Parser_Statement_Validator_Type_Variable
46
-    */
41
+    /**
42
+     * Creates a variable validator: checks whether a single
43
+     * variable token is present in the parameters.
44
+     * 
45
+     * @return Mailcode_Parser_Statement_Validator_Type_Variable
46
+     */
47 47
     public function createVariable() : Mailcode_Parser_Statement_Validator_Type_Variable
48 48
     {
49 49
         return new Mailcode_Parser_Statement_Validator_Type_Variable($this->statement);
50 50
     }
51 51
     
52
-   /**
53
-    * Creates a keyword validator: checks whether a single
54
-    * keyword token is present in the parameters.
55
-    * 
56
-    * @param string $keywordName
57
-    * @return Mailcode_Parser_Statement_Validator_Type_Keyword
58
-    */
52
+    /**
53
+     * Creates a keyword validator: checks whether a single
54
+     * keyword token is present in the parameters.
55
+     * 
56
+     * @param string $keywordName
57
+     * @return Mailcode_Parser_Statement_Validator_Type_Keyword
58
+     */
59 59
     public function createKeyword(string $keywordName) : Mailcode_Parser_Statement_Validator_Type_Keyword
60 60
     {
61 61
         return new Mailcode_Parser_Statement_Validator_Type_Keyword(
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/Multiline.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,14 +26,14 @@
 block discarded – undo
26 26
  */
27 27
 trait Mailcode_Traits_Commands_Validation_Multiline
28 28
 {
29
-   /**
30
-    * @var boolean
31
-    */
29
+    /**
30
+     * @var boolean
31
+     */
32 32
     protected $multiline = false;
33 33
 
34
-   /**
35
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
36
-    */
34
+    /**
35
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
36
+     */
37 37
     protected $multilineToken;
38 38
     
39 39
     protected function validateSyntax_multiline() : void
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command/ShowDate.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,15 +20,15 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Commands_Command_ShowDate extends Mailcode_Commands_ShowBase
22 22
 {
23
-   /**
24
-    * The date format string.
25
-    * @var string
26
-    */
23
+    /**
24
+     * The date format string.
25
+     * @var string
26
+     */
27 27
     private $formatString;
28 28
     
29
-   /**
30
-    * @var Mailcode_Date_FormatInfo
31
-    */
29
+    /**
30
+     * @var Mailcode_Date_FormatInfo
31
+     */
32 32
     private $formatInfo;
33 33
 
34 34
     public function getName() : string
@@ -88,11 +88,11 @@  discard block
 block discarded – undo
88 88
         );
89 89
     }
90 90
     
91
-   /**
92
-    * Retrieves the format string used to format the date.
93
-    * 
94
-    * @return string A PHP compatible date format string.
95
-    */
91
+    /**
92
+     * Retrieves the format string used to format the date.
93
+     * 
94
+     * @return string A PHP compatible date format string.
95
+     */
96 96
     public function getFormatString() : string
97 97
     {
98 98
         return $this->formatString;
Please login to merge, or discard this patch.
src/Mailcode/Collection/NestingValidator.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -30,19 +30,19 @@
 block discarded – undo
30 30
     public const VALIDATION_UNCLOSED_COMMAND = 49104;
31 31
     public const VALIDATION_CLOSING_NON_OPENING_COMMAND = 49105;
32 32
     
33
-   /**
34
-    * @var Mailcode_Collection
35
-    */
33
+    /**
34
+     * @var Mailcode_Collection
35
+     */
36 36
     protected $collection;
37 37
     
38
-   /**
39
-    * @var OperationResult
40
-    */
38
+    /**
39
+     * @var OperationResult
40
+     */
41 41
     protected $validationResult;
42 42
     
43
-   /**
44
-    * @var Mailcode_Commands_Command_Type[]
45
-    */
43
+    /**
44
+     * @var Mailcode_Commands_Command_Type[]
45
+     */
46 46
     protected $stack = array();
47 47
     
48 48
     public function __construct(Mailcode_Collection $collection)
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Formatting.php 1 patch
Indentation   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -32,29 +32,29 @@  discard block
 block discarded – undo
32 32
     public const ERROR_TOO_MANY_REPLACERS = 65902;
33 33
     public const ERROR_NO_FORMATTERS_ADDED = 65903;
34 34
     
35
-   /**
36
-    * @var Mailcode_Parser_Safeguard
37
-    */
35
+    /**
36
+     * @var Mailcode_Parser_Safeguard
37
+     */
38 38
     private $safeguard;
39 39
     
40
-   /**
41
-    * @var Mailcode_Parser_Safeguard_Formatter[]
42
-    */
40
+    /**
41
+     * @var Mailcode_Parser_Safeguard_Formatter[]
42
+     */
43 43
     private $formatters = array();
44 44
     
45
-   /**
46
-    * @var Mailcode_StringContainer
47
-    */
45
+    /**
46
+     * @var Mailcode_StringContainer
47
+     */
48 48
     private $subject;
49 49
     
50
-   /**
51
-    * @var boolean
52
-    */
50
+    /**
51
+     * @var boolean
52
+     */
53 53
     private $applied = false;
54 54
     
55
-   /**
56
-    * @var boolean
57
-    */
55
+    /**
56
+     * @var boolean
57
+     */
58 58
     private $partial = false;
59 59
     
60 60
     public function __construct(Mailcode_Parser_Safeguard $safeguard, Mailcode_StringContainer $subject)
@@ -96,17 +96,17 @@  discard block
 block discarded – undo
96 96
         return $formatter;
97 97
     }
98 98
     
99
-   /**
100
-    * Adds a formatter that will surround all variables with
101
-    * markup to highlight them independently of command syntax
102
-    * highlighting.
103
-    * 
104
-    * This is used to mark variables visually even after commands
105
-    * have been replaced by the target system's post processing.
106
-    * Can be combined with a replacer and other formats.
107
-    * 
108
-    * @return Mailcode_Parser_Safeguard_Formatter_Type_MarkVariables
109
-    */
99
+    /**
100
+     * Adds a formatter that will surround all variables with
101
+     * markup to highlight them independently of command syntax
102
+     * highlighting.
103
+     * 
104
+     * This is used to mark variables visually even after commands
105
+     * have been replaced by the target system's post processing.
106
+     * Can be combined with a replacer and other formats.
107
+     * 
108
+     * @return Mailcode_Parser_Safeguard_Formatter_Type_MarkVariables
109
+     */
110 110
     public function formatWithMarkedVariables() : Mailcode_Parser_Safeguard_Formatter_Type_MarkVariables
111 111
     {
112 112
         $formatter = $this->createMarkVariables();
@@ -200,11 +200,11 @@  discard block
 block discarded – undo
200 200
         }
201 201
     }
202 202
     
203
-   /**
204
-    * Counts the amount of replacer formatters that have been added.
205
-    * 
206
-    * @return int
207
-    */
203
+    /**
204
+     * Counts the amount of replacer formatters that have been added.
205
+     * 
206
+     * @return int
207
+     */
208 208
     private function countReplacers() : int
209 209
     {
210 210
         $count = 0;
@@ -220,37 +220,37 @@  discard block
 block discarded – undo
220 220
         return $count;
221 221
     }
222 222
 
223
-   /**
224
-    * Creates a formatter that adds HTML syntax highlighting
225
-    * for all commands in the specified string, intelligently
226
-    * checking the location of the commands to ensure that they
227
-    * can be syntax highlighted.
228
-    * 
229
-    * For example, commands in HTML attributes will not be
230
-    * highlighted, as this would break the HTML.
231
-    *  
232
-    * @return Mailcode_Parser_Safeguard_Formatter_Type_HTMLHighlighting
233
-    */
223
+    /**
224
+     * Creates a formatter that adds HTML syntax highlighting
225
+     * for all commands in the specified string, intelligently
226
+     * checking the location of the commands to ensure that they
227
+     * can be syntax highlighted.
228
+     * 
229
+     * For example, commands in HTML attributes will not be
230
+     * highlighted, as this would break the HTML.
231
+     *  
232
+     * @return Mailcode_Parser_Safeguard_Formatter_Type_HTMLHighlighting
233
+     */
234 234
     public function createHTMLHighlighting() : Mailcode_Parser_Safeguard_Formatter_Type_HTMLHighlighting
235 235
     {
236 236
         return new Mailcode_Parser_Safeguard_Formatter_Type_HTMLHighlighting($this);
237 237
     }
238 238
 
239
-   /**
240
-    * Creates the formatter that ensures that all commands
241
-    * are placed on a separate line in the subject string.
242
-    */
239
+    /**
240
+     * Creates the formatter that ensures that all commands
241
+     * are placed on a separate line in the subject string.
242
+     */
243 243
     public function createSingleLines() : Mailcode_Parser_Safeguard_Formatter_Type_SingleLines
244 244
     {
245 245
         return new Mailcode_Parser_Safeguard_Formatter_Type_SingleLines($this);
246 246
     }
247 247
     
248
-   /**
249
-    * Creates the formatter that replaces all commands by
250
-    * their normalized variants.
251
-    * 
252
-    * @return Mailcode_Parser_Safeguard_Formatter_Type_Normalized
253
-    */
248
+    /**
249
+     * Creates the formatter that replaces all commands by
250
+     * their normalized variants.
251
+     * 
252
+     * @return Mailcode_Parser_Safeguard_Formatter_Type_Normalized
253
+     */
254 254
     public function createNormalized() : Mailcode_Parser_Safeguard_Formatter_Type_Normalized
255 255
     {
256 256
         return new Mailcode_Parser_Safeguard_Formatter_Type_Normalized($this);
@@ -278,26 +278,26 @@  discard block
 block discarded – undo
278 278
         return $this->subject->getString();
279 279
     }
280 280
 
281
-   /**
282
-    * Whether the formatting is done partially: missing placeholders
283
-    * will simply be ignored.
284
-    * 
285
-    * @return bool
286
-    */
281
+    /**
282
+     * Whether the formatting is done partially: missing placeholders
283
+     * will simply be ignored.
284
+     * 
285
+     * @return bool
286
+     */
287 287
     public function isPartial() : bool
288 288
     {
289 289
         return $this->partial;
290 290
     }
291 291
     
292
-   /**
293
-    * The formatting will ignore missing placeholders. Use this if the
294
-    * formatting will be done on a text that may not contain all of the
295
-    * initial placeholders anymore.
296
-    * 
297
-    * This is like the safeguard's makeWholePartial() method.
298
-    * 
299
-    * @return Mailcode_Parser_Safeguard_Formatting
300
-    */
292
+    /**
293
+     * The formatting will ignore missing placeholders. Use this if the
294
+     * formatting will be done on a text that may not contain all of the
295
+     * initial placeholders anymore.
296
+     * 
297
+     * This is like the safeguard's makeWholePartial() method.
298
+     * 
299
+     * @return Mailcode_Parser_Safeguard_Formatting
300
+     */
301 301
     public function makePartial() : Mailcode_Parser_Safeguard_Formatting
302 302
     {
303 303
         $this->partial = true;
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Formatter/Type/HTMLHighlighting/Location.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
 {
25 25
     public const COMMAND_MARKER = '__MAILCODE_COMMAND__';
26 26
     
27
-   /**
28
-    * @var boolean
29
-    */
27
+    /**
28
+     * @var boolean
29
+     */
30 30
     private $ancestryChecked = false;
31 31
     
32
-   /**
33
-    * @var array<int,array<int,string>>
34
-    */
32
+    /**
33
+     * @var array<int,array<int,string>>
34
+     */
35 35
     private $tagAncestry = array();
36 36
     
37 37
     protected function init() : void
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
         return !$this->isInTagAttributes() && !$this->isInExcludedTag();
44 44
     }
45 45
     
46
-   /**
47
-    * Retrieves the part of the subject string that comes
48
-    * before the command.
49
-    * 
50
-    * @return string
51
-    */
46
+    /**
47
+     * Retrieves the part of the subject string that comes
48
+     * before the command.
49
+     * 
50
+     * @return string
51
+     */
52 52
     private function getHaystackBefore() : string
53 53
     {
54 54
         $pos = $this->getStartPosition();
@@ -65,12 +65,12 @@  discard block
 block discarded – undo
65 65
         return $this->subject->getSubstr(0, $pos).self::COMMAND_MARKER.'>';
66 66
     }
67 67
     
68
-   /**
69
-    * Whether the command is nested in one of the tags
70
-    * that have been added to the list of excluded tags.
71
-    * 
72
-    * @return bool
73
-    */
68
+    /**
69
+     * Whether the command is nested in one of the tags
70
+     * that have been added to the list of excluded tags.
71
+     * 
72
+     * @return bool
73
+     */
74 74
     protected function isInExcludedTag() : bool
75 75
     {
76 76
         $tagNames = $this->getParentTags();
@@ -86,12 +86,12 @@  discard block
 block discarded – undo
86 86
         return false;
87 87
     }
88 88
     
89
-   /**
90
-    * Retrieves a list of the command's parent HTML tags, from
91
-    * highest to lowest.
92
-    * 
93
-    * @return string[]
94
-    */
89
+    /**
90
+     * Retrieves a list of the command's parent HTML tags, from
91
+     * highest to lowest.
92
+     * 
93
+     * @return string[]
94
+     */
95 95
     private function getParentTags() : array
96 96
     {
97 97
         $tags = $this->getTagAncestry();
@@ -116,12 +116,12 @@  discard block
 block discarded – undo
116 116
         return $stack;
117 117
     }
118 118
     
119
-   /**
120
-    * Checks whether the command is located within the attributes
121
-    * of an HTML tag.
122
-    * 
123
-    * @return bool
124
-    */
119
+    /**
120
+     * Checks whether the command is located within the attributes
121
+     * of an HTML tag.
122
+     * 
123
+     * @return bool
124
+     */
125 125
     protected function isInTagAttributes() : bool
126 126
     {
127 127
         $tags = $this->getTagAncestry();
@@ -139,12 +139,12 @@  discard block
 block discarded – undo
139 139
         return false;
140 140
     }
141 141
     
142
-   /**
143
-    * Retrieves a list of tag names that come as parents 
144
-    * above the command.
145
-    * 
146
-    * @return array<int,array<int,string>>
147
-    */
142
+    /**
143
+     * Retrieves a list of tag names that come as parents 
144
+     * above the command.
145
+     * 
146
+     * @return array<int,array<int,string>>
147
+     */
148 148
     private function getTagAncestry() : array
149 149
     {
150 150
         if($this->ancestryChecked)
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Placeholder.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -25,24 +25,24 @@  discard block
 block discarded – undo
25 25
 {
26 26
     public const ERROR_PLACEHOLDER_TOO_LONG = 47901;
27 27
     
28
-   /**
29
-    * @var int
30
-    */
28
+    /**
29
+     * @var int
30
+     */
31 31
     protected $id;
32 32
     
33
-   /**
34
-    * @var Mailcode_Parser_Safeguard
35
-    */
33
+    /**
34
+     * @var Mailcode_Parser_Safeguard
35
+     */
36 36
     protected $safeguard;
37 37
 
38
-   /**
39
-    * @var Mailcode_Commands_Command
40
-    */
38
+    /**
39
+     * @var Mailcode_Commands_Command
40
+     */
41 41
     protected $command;
42 42
     
43
-   /**
44
-    * @var string
45
-    */
43
+    /**
44
+     * @var string
45
+     */
46 46
     protected $replacement = '';
47 47
     
48 48
     public function __construct(int $id, Mailcode_Commands_Command $command, Mailcode_Parser_Safeguard $safeguard)
@@ -104,18 +104,18 @@  discard block
 block discarded – undo
104 104
         return $this->command;
105 105
     }
106 106
     
107
-   /**
108
-    * Serializes the placeholder's information into 
109
-    * an array with the following keys:
110
-    * 
111
-    *   - originalText
112
-    *   - replacementText
113
-    *   - normalizedText
114
-    *   - length
115
-    *   - id
116
-    * 
117
-    * @return array<string,string|integer>
118
-    */
107
+    /**
108
+     * Serializes the placeholder's information into 
109
+     * an array with the following keys:
110
+     * 
111
+     *   - originalText
112
+     *   - replacementText
113
+     *   - normalizedText
114
+     *   - length
115
+     *   - id
116
+     * 
117
+     * @return array<string,string|integer>
118
+     */
119 119
     public function serialize() : array
120 120
     {
121 121
         return array(
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/TokenType.php 1 patch
Indentation   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -22,53 +22,53 @@  discard block
 block discarded – undo
22 22
 {
23 23
     public const VALIDATION_ERROR_COMMAND_WITHOUT_PARAMETERS = 62401;
24 24
     
25
-   /**
26
-    * @var integer
27
-    */
25
+    /**
26
+     * @var integer
27
+     */
28 28
     protected $searchIndex = -1;
29 29
     
30
-   /**
31
-    * @var Mailcode_Parser_Statement_Tokenizer_Token|NULL
32
-    */
30
+    /**
31
+     * @var Mailcode_Parser_Statement_Tokenizer_Token|NULL
32
+     */
33 33
     protected $token;
34 34
     
35
-   /**
36
-    * Retrieves the class name of the token type to 
37
-    * limit the token search to. Only a token of this
38
-    * type will be stored.
39
-    * 
40
-    * @return string
41
-    */
35
+    /**
36
+     * Retrieves the class name of the token type to 
37
+     * limit the token search to. Only a token of this
38
+     * type will be stored.
39
+     * 
40
+     * @return string
41
+     */
42 42
     abstract protected function getTokenClass() : string;
43 43
     
44
-   /**
45
-    * Allows the validator to apply custom search
46
-    * criteria to the tokens that are searched 
47
-    * through to find the target token.
48
-    * 
49
-    * NOTE: Should return true if there are no
50
-    * custom criteria to apply.
51
-    * 
52
-    * @param Mailcode_Parser_Statement_Tokenizer_Token $token
53
-    * @return bool
54
-    */
44
+    /**
45
+     * Allows the validator to apply custom search
46
+     * criteria to the tokens that are searched 
47
+     * through to find the target token.
48
+     * 
49
+     * NOTE: Should return true if there are no
50
+     * custom criteria to apply.
51
+     * 
52
+     * @param Mailcode_Parser_Statement_Tokenizer_Token $token
53
+     * @return bool
54
+     */
55 55
     abstract protected function _isMatch(Mailcode_Parser_Statement_Tokenizer_Token $token) : bool;
56 56
     
57
-   /**
58
-    * @return Mailcode_Parser_Statement_Tokenizer_Token
59
-    */
57
+    /**
58
+     * @return Mailcode_Parser_Statement_Tokenizer_Token
59
+     */
60 60
     abstract public function getToken();
61 61
     
62
-   /**
63
-    * Checks if the specified token matches the current
64
-    * search criteria (index, type...). If the token is
65
-    * a match, the `_isMatch()` method is called to allow
66
-    * the validator class to apply some custom criteria. 
67
-    * 
68
-    * @param Mailcode_Parser_Statement_Tokenizer_Token $token
69
-    * @param int $index
70
-    * @return bool
71
-    */
62
+    /**
63
+     * Checks if the specified token matches the current
64
+     * search criteria (index, type...). If the token is
65
+     * a match, the `_isMatch()` method is called to allow
66
+     * the validator class to apply some custom criteria. 
67
+     * 
68
+     * @param Mailcode_Parser_Statement_Tokenizer_Token $token
69
+     * @param int $index
70
+     * @return bool
71
+     */
72 72
     protected function isMatch(Mailcode_Parser_Statement_Tokenizer_Token $token, int $index) : bool
73 73
     {
74 74
         // filter out tokens of other types
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
         return $this->_isMatch($token);
86 86
     }
87 87
     
88
-   /**
89
-    * Attempts to find a token in the statement
90
-    * that matches the current criteria, and the
91
-    * first one it finds is returned.
92
-    * 
93
-    * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL
94
-    */
88
+    /**
89
+     * Attempts to find a token in the statement
90
+     * that matches the current criteria, and the
91
+     * first one it finds is returned.
92
+     * 
93
+     * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL
94
+     */
95 95
     protected function findToken() : ?Mailcode_Parser_Statement_Tokenizer_Token
96 96
     {
97 97
         $tokens = $this->params->getTokens();
@@ -120,14 +120,14 @@  discard block
 block discarded – undo
120 120
         return false;
121 121
     }
122 122
     
123
-   /**
124
-    * Searches for a specific token index.
125
-    * 
126
-    * NOTE: only relevant when trying to find a single token.
127
-    * 
128
-    * @param int $index
129
-    * @return $this
130
-    */
123
+    /**
124
+     * Searches for a specific token index.
125
+     * 
126
+     * NOTE: only relevant when trying to find a single token.
127
+     * 
128
+     * @param int $index
129
+     * @return $this
130
+     */
131 131
     public function setIndex(int $index) : Mailcode_Parser_Statement_Validator_TokenType
132 132
     {
133 133
         $this->searchIndex = $index;
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/Type/Operand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
 {
23 23
     public const ERROR_NO_OPERAND_TOKEN_FOUND = 62901;
24 24
     
25
-   /**
26
-    * @var string
27
-    */
25
+    /**
26
+     * @var string
27
+     */
28 28
     private $sign = '';
29 29
     
30 30
     protected function getTokenClass() : string
Please login to merge, or discard this patch.