Test Failed
Push — master ( 956a64...151bf3 )
by Sebastian
02:46
created
src/Mailcode/Commands/LogicKeywords.php 1 patch
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -31,27 +31,27 @@  discard block
 block discarded – undo
31 31
     const VALIDATION_CANNOT_MIX_LOGIC_KEYWORDS = 60701;
32 32
     const VALIDATION_INVALID_SUB_COMMAND = 60702;
33 33
     
34
-   /**
35
-    * @var string
36
-    */
34
+    /**
35
+     * @var string
36
+     */
37 37
     private $paramsString;
38 38
     
39
-   /**
40
-    * @var string[]
41
-    */
39
+    /**
40
+     * @var string[]
41
+     */
42 42
     private $names = array(
43 43
         'and', 
44 44
         'or'
45 45
     );
46 46
     
47
-   /**
48
-    * @var Mailcode_Commands_LogicKeywords_Keyword[]
49
-    */
47
+    /**
48
+     * @var Mailcode_Commands_LogicKeywords_Keyword[]
49
+     */
50 50
     private $keywords = array();
51 51
     
52
-   /**
53
-    * @var string
54
-    */
52
+    /**
53
+     * @var string
54
+     */
55 55
     private $mainParams = '';
56 56
     
57 57
     public function __construct(Mailcode_Commands_Command $command, string $paramsString)
@@ -136,9 +136,9 @@  discard block
 block discarded – undo
136 136
         }
137 137
     }
138 138
     
139
-   /**
140
-    * @return string[]
141
-    */
139
+    /**
140
+     * @return string[]
141
+     */
142 142
     private function detectParameters() : array
143 143
     {
144 144
         $params = $this->paramsString;
@@ -156,13 +156,13 @@  discard block
 block discarded – undo
156 156
         return $stack;
157 157
     }
158 158
 
159
-   /**
160
-    * @param string $params
161
-    * @param Mailcode_Commands_LogicKeywords_Keyword $keyword
162
-    * @param string[] $stack
163
-    * @throws Mailcode_Exception
164
-    * @return string
165
-    */
159
+    /**
160
+     * @param string $params
161
+     * @param Mailcode_Commands_LogicKeywords_Keyword $keyword
162
+     * @param string[] $stack
163
+     * @throws Mailcode_Exception
164
+     * @return string
165
+     */
166 166
     private function detectParamsKeyword(string $params, Mailcode_Commands_LogicKeywords_Keyword $keyword, array &$stack) : string
167 167
     {
168 168
         $search = $keyword->getMatchedString();
@@ -187,22 +187,22 @@  discard block
 block discarded – undo
187 187
         return $params;
188 188
     }
189 189
     
190
-   /**
191
-    * Extracts the parameters string to use for the 
192
-    * original command itself, omitting all the logic
193
-    * keywords for the sub-commands.
194
-    * 
195
-    * @return string
196
-    */
190
+    /**
191
+     * Extracts the parameters string to use for the 
192
+     * original command itself, omitting all the logic
193
+     * keywords for the sub-commands.
194
+     * 
195
+     * @return string
196
+     */
197 197
     public function getMainParamsString() : string
198 198
     {
199 199
         return $this->mainParams;
200 200
     }
201 201
     
202
-   /**
203
-    * Retrieves the detected keyword names.
204
-    * @return string[]
205
-    */
202
+    /**
203
+     * Retrieves the detected keyword names.
204
+     * @return string[]
205
+     */
206 206
     public function getDetectedNames() : array
207 207
     {
208 208
         $names = array();
@@ -220,23 +220,23 @@  discard block
 block discarded – undo
220 220
         return $names;
221 221
     }
222 222
     
223
-   /**
224
-    * Retrieves all keywords that were detected in the
225
-    * command's parameters string, if any.
226
-    * 
227
-    * @return Mailcode_Commands_LogicKeywords_Keyword[]
228
-    */
223
+    /**
224
+     * Retrieves all keywords that were detected in the
225
+     * command's parameters string, if any.
226
+     * 
227
+     * @return Mailcode_Commands_LogicKeywords_Keyword[]
228
+     */
229 229
     public function getKeywords() : array
230 230
     {
231 231
         return $this->keywords;
232 232
     }
233 233
     
234
-   /**
235
-    * Detects any keyword statements in the parameters by keyword name.
236
-    * 
237
-    * @param string $name
238
-    * @return Mailcode_Commands_LogicKeywords_Keyword[]
239
-    */
234
+    /**
235
+     * Detects any keyword statements in the parameters by keyword name.
236
+     * 
237
+     * @param string $name
238
+     * @return Mailcode_Commands_LogicKeywords_Keyword[]
239
+     */
240 240
     private function detectKeywords(string $name) : array
241 241
     {
242 242
         $regex = sprintf('/%1$s\s+([a-z\-0-9]+):|%1$s:/x', $name);
Please login to merge, or discard this patch.
src/Mailcode/Styler.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
 {
25 25
     const ERROR_CSS_FILE_NOT_FOUND = 60901;
26 26
     
27
-   /**
28
-    * @var string
29
-    */
27
+    /**
28
+     * @var string
29
+     */
30 30
     private $path;
31 31
     
32
-   /**
33
-    * @var string
34
-    */
32
+    /**
33
+     * @var string
34
+     */
35 35
     private $fileName = 'highlight.css';
36 36
     
37 37
     public function __construct()
@@ -54,22 +54,22 @@  discard block
 block discarded – undo
54 54
         $this->path = $path;
55 55
     }
56 56
    
57
-   /**
58
-    * Retrieves the raw CSS source for the highlighting.
59
-    * 
60
-    * @return string
61
-    */
57
+    /**
58
+     * Retrieves the raw CSS source for the highlighting.
59
+     * 
60
+     * @return string
61
+     */
62 62
     public function getCSS() : string
63 63
     {
64 64
         return FileHelper::readContents($this->path);
65 65
     }
66 66
     
67
-   /**
68
-    * Retrieves a fully formed `code` tag with the CSS,
69
-    * to inject inline into an HTML document.
70
-    * 
71
-    * @return string
72
-    */
67
+    /**
68
+     * Retrieves a fully formed `code` tag with the CSS,
69
+     * to inject inline into an HTML document.
70
+     * 
71
+     * @return string
72
+     */
73 73
     public function getStyleTag() : string
74 74
     {
75 75
         return sprintf(
@@ -78,23 +78,23 @@  discard block
 block discarded – undo
78 78
         );
79 79
     }
80 80
     
81
-   /**
82
-    * Retrieves the path to the stylesheet file.
83
-    * 
84
-    * @return string
85
-    */
81
+    /**
82
+     * Retrieves the path to the stylesheet file.
83
+     * 
84
+     * @return string
85
+     */
86 86
     public function getStylesheetPath() : string
87 87
     {
88 88
         return $this->path;
89 89
     }
90 90
     
91
-   /**
92
-    * Retrieves the URL to the stylesheet file, given the
93
-    * local URL to the application's vendor folder.
94
-    *  
95
-    * @param string $vendorURL The URL to the vendor folder (must be accessible in the webroot).
96
-    * @return string
97
-    */
91
+    /**
92
+     * Retrieves the URL to the stylesheet file, given the
93
+     * local URL to the application's vendor folder.
94
+     *  
95
+     * @param string $vendorURL The URL to the vendor folder (must be accessible in the webroot).
96
+     * @return string
97
+     */
98 98
     public function getStylesheetURL(string $vendorURL) : string
99 99
     {
100 100
         return sprintf(
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Info.php 1 patch
Indentation   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
  */
22 22
 class Mailcode_Parser_Statement_Info
23 23
 {
24
-   /**
25
-    * @var Mailcode_Parser_Statement_Tokenizer
26
-    */
24
+    /**
25
+     * @var Mailcode_Parser_Statement_Tokenizer
26
+     */
27 27
     protected $tokenizer;
28 28
     
29
-   /**
30
-    * @var Mailcode_Parser_Statement_Tokenizer_Token[]
31
-    */
29
+    /**
30
+     * @var Mailcode_Parser_Statement_Tokenizer_Token[]
31
+     */
32 32
     protected $tokens = array();
33 33
     
34 34
     public function __construct(Mailcode_Parser_Statement_Tokenizer $tokenizer)
@@ -37,11 +37,11 @@  discard block
 block discarded – undo
37 37
         $this->tokens = $this->tokenizer->getTokens(); 
38 38
     }
39 39
     
40
-   /**
41
-    * Whether the whole statement is a variable being assigned a value.
42
-    * 
43
-    * @return bool
44
-    */
40
+    /**
41
+     * Whether the whole statement is a variable being assigned a value.
42
+     * 
43
+     * @return bool
44
+     */
45 45
     public function isVariableAssignment() : bool
46 46
     {
47 47
         $variable = $this->getVariableByIndex(0);
@@ -56,11 +56,11 @@  discard block
 block discarded – undo
56 56
         return false;
57 57
     }
58 58
     
59
-   /**
60
-    * Whether the whole statement is a variable being compared to something.
61
-    * 
62
-    * @return bool
63
-    */
59
+    /**
60
+     * Whether the whole statement is a variable being compared to something.
61
+     * 
62
+     * @return bool
63
+     */
64 64
     public function isVariableComparison() : bool
65 65
     {
66 66
         $variable = $this->getVariableByIndex(0);
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
         return false;
76 76
     }
77 77
     
78
-   /**
79
-    * Retrieves all variables used in the statement.
80
-    * 
81
-    * @return \Mailcode\Mailcode_Variables_Variable[]
82
-    */
78
+    /**
79
+     * Retrieves all variables used in the statement.
80
+     * 
81
+     * @return \Mailcode\Mailcode_Variables_Variable[]
82
+     */
83 83
     public function getVariables()
84 84
     {
85 85
         $result = array();
@@ -95,14 +95,14 @@  discard block
 block discarded – undo
95 95
         return $result;
96 96
     }
97 97
     
98
-   /**
99
-    * Retrieves a variable by its position in the command's parameters.
100
-    * Returns null if there is no parameter at the specified index, or
101
-    * if it is of another type.
102
-    * 
103
-    * @param int $index Zero-based index.
104
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
105
-    */
98
+    /**
99
+     * Retrieves a variable by its position in the command's parameters.
100
+     * Returns null if there is no parameter at the specified index, or
101
+     * if it is of another type.
102
+     * 
103
+     * @param int $index Zero-based index.
104
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
105
+     */
106 106
     public function getVariableByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token_Variable
107 107
     {
108 108
         $token = $this->getTokenByIndex($index);
@@ -115,14 +115,14 @@  discard block
 block discarded – undo
115 115
         return null;
116 116
     }
117 117
     
118
-   /**
119
-    * Retrieves a string literal by its position in the command's parameters.
120
-    * Returns null if there is no parameter at the specified index, or
121
-    * if it is of another type.
122
-    *
123
-    * @param int $index Zero-based index.
124
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral|NULL
125
-    */
118
+    /**
119
+     * Retrieves a string literal by its position in the command's parameters.
120
+     * Returns null if there is no parameter at the specified index, or
121
+     * if it is of another type.
122
+     *
123
+     * @param int $index Zero-based index.
124
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral|NULL
125
+     */
126 126
     public function getStringLiteralByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral
127 127
     {
128 128
         $token = $this->getTokenByIndex($index);
@@ -135,14 +135,14 @@  discard block
 block discarded – undo
135 135
         return null;
136 136
     }
137 137
     
138
-   /**
139
-    * Retrieves a keyword by its position in the command's parameters.
140
-    * Returns null if there is no parameter at the specified index, or
141
-    * if it is of another type.
142
-    *
143
-    * @param int $index Zero-based index.
144
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
145
-    */
138
+    /**
139
+     * Retrieves a keyword by its position in the command's parameters.
140
+     * Returns null if there is no parameter at the specified index, or
141
+     * if it is of another type.
142
+     *
143
+     * @param int $index Zero-based index.
144
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
145
+     */
146 146
     public function getKeywordByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword
147 147
     {
148 148
         $token = $this->getTokenByIndex($index);
@@ -155,14 +155,14 @@  discard block
 block discarded – undo
155 155
         return null;
156 156
     }
157 157
     
158
-   /**
159
-    * Retrieves an operand by its position in the command's parameters.
160
-    * Returns null if there is no parameter at the specified index, or
161
-    * if it is of another type.
162
-    *
163
-    * @param int $index Zero-based index.
164
-    * @return Mailcode_Parser_Statement_Tokenizer_Token_Operand|NULL
165
-    */
158
+    /**
159
+     * Retrieves an operand by its position in the command's parameters.
160
+     * Returns null if there is no parameter at the specified index, or
161
+     * if it is of another type.
162
+     *
163
+     * @param int $index Zero-based index.
164
+     * @return Mailcode_Parser_Statement_Tokenizer_Token_Operand|NULL
165
+     */
166 166
     public function getOperandByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token_Operand
167 167
     {
168 168
         $token = $this->getTokenByIndex($index);
@@ -175,14 +175,14 @@  discard block
 block discarded – undo
175 175
         return null;
176 176
     }
177 177
     
178
-   /**
179
-    * Retrieves a parameter token by its position in the command's parameters,
180
-    * regardless of its type. Returns null if there is no parameter at the 
181
-    * specified index.
182
-    *
183
-    * @param int $index Zero-based index.
184
-    * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL
185
-    */
178
+    /**
179
+     * Retrieves a parameter token by its position in the command's parameters,
180
+     * regardless of its type. Returns null if there is no parameter at the 
181
+     * specified index.
182
+     *
183
+     * @param int $index Zero-based index.
184
+     * @return Mailcode_Parser_Statement_Tokenizer_Token|NULL
185
+     */
186 186
     public function getTokenByIndex(int $index) : ?Mailcode_Parser_Statement_Tokenizer_Token
187 187
     {
188 188
         if(isset($this->tokens[$index]))
@@ -198,19 +198,19 @@  discard block
 block discarded – undo
198 198
         return isset($this->tokens[$index]);
199 199
     }
200 200
     
201
-   /**
202
-    * Retrieves all tokens.
203
-    * @return Mailcode_Parser_Statement_Tokenizer_Token[]
204
-    */
201
+    /**
202
+     * Retrieves all tokens.
203
+     * @return Mailcode_Parser_Statement_Tokenizer_Token[]
204
+     */
205 205
     public function getTokens() : array
206 206
     {
207 207
         return $this->tokens;
208 208
     }
209 209
     
210
-   /**
211
-    * Retrieves all string literals that were found in the command.
212
-    * @return \Mailcode\Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral[]
213
-    */
210
+    /**
211
+     * Retrieves all string literals that were found in the command.
212
+     * @return \Mailcode\Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral[]
213
+     */
214 214
     public function getStringLiterals()
215 215
     {
216 216
         $result = array();
Please login to merge, or discard this patch.
src/Mailcode/Commands/LogicKeywords/Keyword.php 1 patch
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -29,39 +29,39 @@  discard block
 block discarded – undo
29 29
     const VALIDATION_NO_COMMAND_CREATED = 61101;
30 30
     const VALIDATION_INVALID_COMMAND_CREATED = 61102;
31 31
     
32
-   /**
33
-    * @var Mailcode_Commands_LogicKeywords
34
-    */
32
+    /**
33
+     * @var Mailcode_Commands_LogicKeywords
34
+     */
35 35
     private $keywords;
36 36
     
37
-   /**
38
-    * @var string
39
-    */
37
+    /**
38
+     * @var string
39
+     */
40 40
     private $name;
41 41
     
42
-   /**
43
-    * @var string
44
-    */
42
+    /**
43
+     * @var string
44
+     */
45 45
     private $keywordType;
46 46
     
47
-   /**
48
-    * @var string
49
-    */
47
+    /**
48
+     * @var string
49
+     */
50 50
     private $matchedString;
51 51
     
52
-   /**
53
-    * @var string
54
-    */
52
+    /**
53
+     * @var string
54
+     */
55 55
     private $params = '';
56 56
     
57
-   /**
58
-    * @var boolean
59
-    */
57
+    /**
58
+     * @var boolean
59
+     */
60 60
     private $paramsSet = false;
61 61
     
62
-   /**
63
-    * @var Mailcode_Collection
64
-    */
62
+    /**
63
+     * @var Mailcode_Collection
64
+     */
65 65
     private $collection;
66 66
     
67 67
     public function __construct(Mailcode_Commands_LogicKeywords $keywords, string $name, string $matchedString, string $type)
@@ -72,10 +72,10 @@  discard block
 block discarded – undo
72 72
         $this->matchedString = $matchedString;
73 73
     }
74 74
     
75
-   /**
76
-    * The keyword name, e.g. "and". Always lowercase.
77
-    * @return string
78
-    */
75
+    /**
76
+     * The keyword name, e.g. "and". Always lowercase.
77
+     * @return string
78
+     */
79 79
     public function getName() : string
80 80
     {
81 81
         return $this->name;
@@ -98,24 +98,24 @@  discard block
 block discarded – undo
98 98
         return $string;
99 99
     }
100 100
     
101
-   /**
102
-    * The full string that was matched in the command's parameters
103
-    * string. Examples: "and:", "and variable:"...
104
-    * 
105
-    * @return string
106
-    */
101
+    /**
102
+     * The full string that was matched in the command's parameters
103
+     * string. Examples: "and:", "and variable:"...
104
+     * 
105
+     * @return string
106
+     */
107 107
     public function getMatchedString() : string
108 108
     {
109 109
         return $this->matchedString;
110 110
     }
111 111
     
112
-   /**
113
-    * Sets the parameters string matching this logic keyword,
114
-    * which is used to build the actual sub-command. Set by
115
-    * the LogicKeywords class instance.
116
-    * 
117
-    * @param string $params
118
-    */
112
+    /**
113
+     * Sets the parameters string matching this logic keyword,
114
+     * which is used to build the actual sub-command. Set by
115
+     * the LogicKeywords class instance.
116
+     * 
117
+     * @param string $params
118
+     */
119 119
     public function setParamsString(string $params) : void
120 120
     {
121 121
         if($this->paramsSet)
@@ -133,13 +133,13 @@  discard block
 block discarded – undo
133 133
         $this->createCommand();
134 134
     }
135 135
     
136
-   /**
137
-    * Retrieves the full command string used to create 
138
-    * the actual command. For opening commands like IF,
139
-    * this includes the closing {end} command.
140
-    * 
141
-    * @return string
142
-    */
136
+    /**
137
+     * Retrieves the full command string used to create 
138
+     * the actual command. For opening commands like IF,
139
+     * this includes the closing {end} command.
140
+     * 
141
+     * @return string
142
+     */
143 143
     public function getCommandString() : string
144 144
     {
145 145
         $string = sprintf(
@@ -182,12 +182,12 @@  discard block
 block discarded – undo
182 182
         }
183 183
     }
184 184
     
185
-   /**
186
-    * Retrieves the command for the keyword.
187
-    * 
188
-    * @throws Mailcode_Exception
189
-    * @return Mailcode_Commands_Command
190
-    */
185
+    /**
186
+     * Retrieves the command for the keyword.
187
+     * 
188
+     * @throws Mailcode_Exception
189
+     * @return Mailcode_Commands_Command
190
+     */
191 191
     public function getCommand() : Mailcode_Commands_Command
192 192
     {
193 193
         $command = $this->collection->getFirstCommand();
Please login to merge, or discard this patch.
src/Mailcode/Commands/Highlighter.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,19 +20,19 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Commands_Highlighter
22 22
 {
23
-   /**
24
-    * @var Mailcode_Commands_Command
25
-    */
23
+    /**
24
+     * @var Mailcode_Commands_Command
25
+     */
26 26
     protected $command;
27 27
     
28
-   /**
29
-    * @var string[]
30
-    */
28
+    /**
29
+     * @var string[]
30
+     */
31 31
     protected $parts = array();
32 32
     
33 33
     public function __construct(Mailcode_Commands_Command $command)
34 34
     {
35
-       $this->command = $command;
35
+        $this->command = $command;
36 36
     }
37 37
     
38 38
     public function highlight() : string
@@ -121,11 +121,11 @@  discard block
 block discarded – undo
121 121
         $this->appendParams($keyword->getCommand());
122 122
     }
123 123
     
124
-   /**
125
-    * @param string[] $classes
126
-    * @param string $content
127
-    * @return string
128
-    */
124
+    /**
125
+     * @param string[] $classes
126
+     * @param string $content
127
+     * @return string
128
+     */
129 129
     protected function renderTag(array $classes, string $content) : string
130 130
     {
131 131
         $parts = array();
Please login to merge, or discard this patch.
css/index.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -48,13 +48,13 @@
 block discarded – undo
48 48
     <body>
49 49
     	<p>
50 50
     		<?php 
51
-    		    pts('This showcases the command\'s syntax highlighting.');
52
-    		    pts(
53
-    		        'It is based on the %1$s color scheme%2$s:',
54
-    		        '<a href="https://ethanschoonover.com/solarized/">"Solarized"',
55
-    		        '</a>'
56
-		        );
57
-    		?>
51
+                pts('This showcases the command\'s syntax highlighting.');
52
+                pts(
53
+                    'It is based on the %1$s color scheme%2$s:',
54
+                    '<a href="https://ethanschoonover.com/solarized/">"Solarized"',
55
+                    '</a>'
56
+                );
57
+            ?>
58 58
 		</p>
59 59
 		<br>
60 60
     	<div class="commands">
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
     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)
@@ -115,18 +115,18 @@  discard block
 block discarded – undo
115 115
         return $this->command;
116 116
     }
117 117
     
118
-   /**
119
-    * Serializes the placeholder's information into 
120
-    * an array with the following keys:
121
-    * 
122
-    *   - originalText
123
-    *   - replacementText
124
-    *   - normalizedText
125
-    *   - length
126
-    *   - id
127
-    * 
128
-    * @return array<string,string|integer>
129
-    */
118
+    /**
119
+     * Serializes the placeholder's information into 
120
+     * an array with the following keys:
121
+     * 
122
+     *   - originalText
123
+     *   - replacementText
124
+     *   - normalizedText
125
+     *   - length
126
+     *   - id
127
+     * 
128
+     * @return array<string,string|integer>
129
+     */
130 130
     public function serialize() : array
131 131
     {
132 132
         return array(
Please login to merge, or discard this patch.
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,12 +38,12 @@  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
         $validate = new Mailcode_Parser_Statement_Validator_Type_Variable($this->statement);
@@ -51,13 +51,13 @@  discard block
 block discarded – undo
51 51
         return $validate;
52 52
     }
53 53
     
54
-   /**
55
-    * Creates a keyword validator: checks whether a single
56
-    * keyword token is present in the parameters.
57
-    * 
58
-    * @param string $keywordName
59
-    * @return Mailcode_Parser_Statement_Validator_Type_Keyword
60
-    */
54
+    /**
55
+     * Creates a keyword validator: checks whether a single
56
+     * keyword token is present in the parameters.
57
+     * 
58
+     * @param string $keywordName
59
+     * @return Mailcode_Parser_Statement_Validator_Type_Keyword
60
+     */
61 61
     public function createKeyword(string $keywordName) : Mailcode_Parser_Statement_Validator_Type_Keyword
62 62
     {
63 63
         $validate = new Mailcode_Parser_Statement_Validator_Type_Keyword(
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
     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.