Passed
Push — master ( eeecf8...40ca60 )
by Sebastian
02:32
created
src/Mailcode/Parser/Statement/Validator/Type/Keyword.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
 {
23 23
     const ERROR_NO_KEYWORD_TOKEN_FOUND = 62701;
24 24
     
25
-   /**
26
-    * The name of the keyword, with ":" appended.
27
-    * @var string
28
-    */
25
+    /**
26
+     * The name of the keyword, with ":" appended.
27
+     * @var string
28
+     */
29 29
     protected $keywordName;
30 30
     
31 31
     public function __construct(Mailcode_Parser_Statement $statement, string $keywordName)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     
51 51
     public function getToken() : Mailcode_Parser_Statement_Tokenizer_Token_Keyword
52 52
     {
53
-        if($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
53
+        if ($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
54 54
         {
55 55
             return $this->token;
56 56
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/Type/Value.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     
35 35
     public function getToken() : Mailcode_Parser_Statement_Tokenizer_ValueInterface
36 36
     {
37
-        if($this->token instanceof Mailcode_Parser_Statement_Tokenizer_ValueInterface)
37
+        if ($this->token instanceof Mailcode_Parser_Statement_Tokenizer_ValueInterface)
38 38
         {
39 39
             return $this->token;
40 40
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/Type/StringLiteral.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     
35 35
     public function getToken() : Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral
36 36
     {
37
-        if($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
37
+        if ($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral)
38 38
         {
39 39
             return $this->token;
40 40
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/Type/Operand.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
 {
23 23
     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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     
42 42
     protected function _isMatch(Mailcode_Parser_Statement_Tokenizer_Token $token) : bool
43 43
     {
44
-        if(!empty($this->sign) && $token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
44
+        if (!empty($this->sign) && $token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
45 45
         {
46 46
             return $token->getSign() === $this->sign;
47 47
         }
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     
52 52
     public function getToken() : Mailcode_Parser_Statement_Tokenizer_Token_Operand
53 53
     {
54
-        if($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
54
+        if ($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
55 55
         {
56 56
             return $this->token;
57 57
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator/Type/Variable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     
35 35
     public function getToken() : Mailcode_Parser_Statement_Tokenizer_Token_Variable
36 36
     {
37
-        if($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
37
+        if ($this->token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
38 38
         {
39 39
             return $this->token;
40 40
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Token/StringLiteral.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,28 +20,28 @@
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Parser_Statement_Tokenizer_Token_StringLiteral extends Mailcode_Parser_Statement_Tokenizer_Token implements Mailcode_Parser_Statement_Tokenizer_ValueInterface
22 22
 {
23
-   /**
24
-    * Retrieves the text with the surrounding quotes.
25
-    * @return string
26
-    */
23
+    /**
24
+     * Retrieves the text with the surrounding quotes.
25
+     * @return string
26
+     */
27 27
     public function getNormalized() : string
28 28
     {
29 29
         return $this->restoreQuotes($this->matchedText);
30 30
     }
31 31
     
32
-   /**
33
-    * Retrieves the text with the surrounding quotes.
34
-    * @return string
35
-    */
32
+    /**
33
+     * Retrieves the text with the surrounding quotes.
34
+     * @return string
35
+     */
36 36
     public function getValue() : string
37 37
     {
38 38
         return $this->getNormalized();
39 39
     }
40 40
     
41
-   /**
42
-    * Retrieves the text without the surrounding quotes.
43
-    * @return string
44
-    */
41
+    /**
42
+     * Retrieves the text without the surrounding quotes.
43
+     * @return string
44
+     */
45 45
     public function getText() : string
46 46
     {
47 47
         $quoteless = trim($this->matchedText, '"\'');
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Token/Operand.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@  discard block
 block discarded – undo
30 30
         return $this->getSign();
31 31
     }
32 32
     
33
-   /**
34
-    * Retrieves all known comparison operator signs.
35
-    * @return string[]
36
-    */
33
+    /**
34
+     * Retrieves all known comparison operator signs.
35
+     * @return string[]
36
+     */
37 37
     public static function getComparisonSigns() : array
38 38
     {
39 39
         return array(
@@ -46,11 +46,11 @@  discard block
 block discarded – undo
46 46
         );
47 47
     }
48 48
     
49
-   /**
50
-    * Whether the operator is comparison related (equals, not equals, smaller, greater...).
51
-    *  
52
-    * @return bool
53
-    */
49
+    /**
50
+     * Whether the operator is comparison related (equals, not equals, smaller, greater...).
51
+     *  
52
+     * @return bool
53
+     */
54 54
     public function isComparator() : bool
55 55
     {
56 56
         return 
@@ -62,11 +62,11 @@  discard block
 block discarded – undo
62 62
         $this->isSmallerOrEquals();
63 63
     }
64 64
     
65
-   /**
66
-    * Whether the operator is calculation related (minus, plus, divide, multiply).
67
-    * 
68
-    * @return bool
69
-    */
65
+    /**
66
+     * Whether the operator is calculation related (minus, plus, divide, multiply).
67
+     * 
68
+     * @return bool
69
+     */
70 70
     public function isCalculator() : bool
71 71
     {
72 72
         return 
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command.php 2 patches
Indentation   +85 added lines, -85 removed lines patch added patch discarded remove patch
@@ -32,44 +32,44 @@  discard block
 block discarded – undo
32 32
     const VALIDATION_UNKNOWN_COMMAND_NAME = 48304;
33 33
     const VALIDATION_INVALID_PARAMS_STATEMENT = 48305;
34 34
 
35
-   /**
36
-    * @var string
37
-    */
35
+    /**
36
+     * @var string
37
+     */
38 38
     protected $type = '';
39 39
 
40
-   /**
41
-    * @var string
42
-    */
40
+    /**
41
+     * @var string
42
+     */
43 43
     protected $paramsString = '';
44 44
     
45
-   /**
46
-    * @var string
47
-    */
45
+    /**
46
+     * @var string
47
+     */
48 48
     protected $matchedText = '';
49 49
 
50
-   /**
51
-    * @var string
52
-    */
50
+    /**
51
+     * @var string
52
+     */
53 53
     protected $hash = '';
54 54
     
55
-   /**
56
-    * @var \AppUtils\OperationResult
57
-    */
55
+    /**
56
+     * @var \AppUtils\OperationResult
57
+     */
58 58
     protected $validationResult = null;
59 59
     
60
-   /**
61
-    * @var \Mailcode\Mailcode
62
-    */
60
+    /**
61
+     * @var \Mailcode\Mailcode
62
+     */
63 63
     protected $mailcode;
64 64
     
65
-   /**
66
-    * @var \Mailcode\Mailcode_Parser_Statement
67
-    */
65
+    /**
66
+     * @var \Mailcode\Mailcode_Parser_Statement
67
+     */
68 68
     protected $params;
69 69
 
70
-   /**
71
-    * @var string[] 
72
-    */
70
+    /**
71
+     * @var string[] 
72
+     */
73 73
     protected $validations = array(
74 74
         'params_empty',
75 75
         'params_keywords',
@@ -78,24 +78,24 @@  discard block
 block discarded – undo
78 78
         'type_unsupported'
79 79
     );
80 80
     
81
-   /**
82
-    * @var string
83
-    */
81
+    /**
82
+     * @var string
83
+     */
84 84
     protected $comment = '';
85 85
     
86
-   /**
87
-    * @var Mailcode_Commands_LogicKeywords|NULL
88
-    */
86
+    /**
87
+     * @var Mailcode_Commands_LogicKeywords|NULL
88
+     */
89 89
     protected $logicKeywords;
90 90
     
91
-   /**
92
-    * @var Mailcode_Parser_Statement_Validator
93
-    */
91
+    /**
92
+     * @var Mailcode_Parser_Statement_Validator
93
+     */
94 94
     protected $validator;
95 95
     
96
-   /**
97
-    * @var boolean
98
-    */
96
+    /**
97
+     * @var boolean
98
+     */
99 99
     private $validated = false;
100 100
     
101 101
     public function __construct(string $type='', string $paramsString='', string $matchedText='')
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
         
115 115
     }
116 116
     
117
-   /**
118
-    * @return string The ID of the command = the name of the command class file.
119
-    */
117
+    /**
118
+     * @return string The ID of the command = the name of the command class file.
119
+     */
120 120
     public function getID() : string
121 121
     {
122 122
         // account for commands with types: If_Variable should still return If.
@@ -125,14 +125,14 @@  discard block
 block discarded – undo
125 125
         return array_shift($tokens);
126 126
     }
127 127
     
128
-   /**
129
-    * Sets an optional comment that is not used anywhere, but
130
-    * can be used by the application to track why a command is
131
-    * used somewhere. 
132
-    * 
133
-    * @param string $comment
134
-    * @return Mailcode_Commands_Command
135
-    */
128
+    /**
129
+     * Sets an optional comment that is not used anywhere, but
130
+     * can be used by the application to track why a command is
131
+     * used somewhere. 
132
+     * 
133
+     * @param string $comment
134
+     * @return Mailcode_Commands_Command
135
+     */
136 136
     public function setComment(string $comment) : Mailcode_Commands_Command
137 137
     {
138 138
         $this->comment = $comment;
@@ -140,34 +140,34 @@  discard block
 block discarded – undo
140 140
         return $this;
141 141
     }
142 142
     
143
-   /**
144
-    * Retrieves the previously set comment, if any.
145
-    * 
146
-    * @return string
147
-    */
143
+    /**
144
+     * Retrieves the previously set comment, if any.
145
+     * 
146
+     * @return string
147
+     */
148 148
     public function getComment() : string
149 149
     {
150 150
         return $this->comment;
151 151
     }
152 152
     
153
-   /**
154
-    * Checks whether this is a dummy command, which is only
155
-    * used to access information on the command type. It cannot
156
-    * be used as an actual live command.
157
-    * 
158
-    * @return bool
159
-    */
153
+    /**
154
+     * Checks whether this is a dummy command, which is only
155
+     * used to access information on the command type. It cannot
156
+     * be used as an actual live command.
157
+     * 
158
+     * @return bool
159
+     */
160 160
     public function isDummy() : bool
161 161
     {
162 162
         return $this->type === '__dummy';
163 163
     }
164 164
     
165
-   /**
166
-    * Retrieves a hash of the actual matched command string,
167
-    * which is used in collections to detect duplicate commands.
168
-    * 
169
-    * @return string
170
-    */
165
+    /**
166
+     * Retrieves a hash of the actual matched command string,
167
+     * which is used in collections to detect duplicate commands.
168
+     * 
169
+     * @return string
170
+     */
171 171
     public function getHash() : string
172 172
     {
173 173
         $this->requireNonDummy();
@@ -261,9 +261,9 @@  discard block
 block discarded – undo
261 261
         return $this->validationResult->isValid();
262 262
     }
263 263
     
264
-   /**
265
-    * @return string[]
266
-    */
264
+    /**
265
+     * @return string[]
266
+     */
267 267
     abstract protected function getValidations() : array;
268 268
     
269 269
     protected function validateSyntax_params_empty() : void
@@ -422,12 +422,12 @@  discard block
 block discarded – undo
422 422
     
423 423
     abstract public function supportsType() : bool;
424 424
     
425
-   /**
426
-    * Whether the command allows using logic keywords like "and:" or "or:"
427
-    * in the command parameters.
428
-    * 
429
-    * @return bool
430
-    */
425
+    /**
426
+     * Whether the command allows using logic keywords like "and:" or "or:"
427
+     * in the command parameters.
428
+     * 
429
+     * @return bool
430
+     */
431 431
     abstract public function supportsLogicKeywords() : bool;
432 432
     
433 433
     abstract public function generatesContent() : bool;
@@ -473,22 +473,22 @@  discard block
 block discarded – undo
473 473
         return $normalizer->normalize();
474 474
     }
475 475
     
476
-   /**
477
-    * Retrieves the names of all the command's supported types: the part
478
-    * between the command name and the colon. Example: {command type: params}.
479
-    * 
480
-    * @return string[]
481
-    */
476
+    /**
477
+     * Retrieves the names of all the command's supported types: the part
478
+     * between the command name and the colon. Example: {command type: params}.
479
+     * 
480
+     * @return string[]
481
+     */
482 482
     public function getSupportedTypes() : array
483 483
     {
484 484
         return array();
485 485
     }
486 486
     
487
-   /**
488
-    * Retrieves all variable names used in the command.
489
-    * 
490
-    * @return Mailcode_Variables_Collection_Regular
491
-    */
487
+    /**
488
+     * Retrieves all variable names used in the command.
489
+     * 
490
+     * @return Mailcode_Variables_Collection_Regular
491
+     */
492 492
     public function getVariables() : Mailcode_Variables_Collection_Regular
493 493
     {
494 494
         return Mailcode::create()->findVariables($this->paramsString);
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     */
99 99
     private $validated = false;
100 100
     
101
-    public function __construct(string $type='', string $paramsString='', string $matchedText='')
101
+    public function __construct(string $type = '', string $paramsString = '', string $matchedText = '')
102 102
     {
103 103
         $this->type = $type;
104 104
         $this->paramsString = html_entity_decode($paramsString);
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     {
173 173
         $this->requireNonDummy();
174 174
         
175
-        if($this->hash === '') {
175
+        if ($this->hash === '') {
176 176
             $this->hash = md5($this->matchedText);
177 177
         }
178 178
         
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     
182 182
     protected function requireNonDummy() : void
183 183
     {
184
-        if(!$this->isDummy())
184
+        if (!$this->isDummy())
185 185
         {
186 186
             return;
187 187
         }
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
     
201 201
     protected function validate() : \AppUtils\OperationResult
202 202
     {
203
-        if(!$this->validated)
203
+        if (!$this->validated)
204 204
         {
205 205
             $this->requireNonDummy();
206 206
             $this->validateSyntax();
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
     
214 214
     public function getValidationResult() :  \AppUtils\OperationResult
215 215
     {
216
-        if(isset($this->validationResult)) 
216
+        if (isset($this->validationResult)) 
217 217
         {
218 218
             return $this->validationResult;
219 219
         }
@@ -229,10 +229,10 @@  discard block
 block discarded – undo
229 229
     {
230 230
         $validations = array_merge($this->validations, $this->getValidations());
231 231
         
232
-        foreach($validations as $validation)
232
+        foreach ($validations as $validation)
233 233
         {
234 234
             // break off at the first validation issue
235
-            if(!$this->validateSyntaxMethod($validation))
235
+            if (!$this->validateSyntaxMethod($validation))
236 236
             {
237 237
                 return;
238 238
             }
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
     {
244 244
         $method = 'validateSyntax_'.$validation;
245 245
         
246
-        if(!method_exists($this, $method))
246
+        if (!method_exists($this, $method))
247 247
         {
248 248
             throw new Mailcode_Exception(
249 249
                 'Missing validation method ['.$validation.']',
@@ -268,12 +268,12 @@  discard block
 block discarded – undo
268 268
     
269 269
     protected function validateSyntax_params_empty() : void
270 270
     {
271
-        if(!$this->requiresParameters())
271
+        if (!$this->requiresParameters())
272 272
         {
273 273
             return;
274 274
         }
275 275
         
276
-        if(empty($this->paramsString))
276
+        if (empty($this->paramsString))
277 277
         {
278 278
             $this->validationResult->makeError(
279 279
                 t('Parameters have to be specified.'),
@@ -285,14 +285,14 @@  discard block
 block discarded – undo
285 285
     
286 286
     protected function validateSyntax_params_keywords() : void
287 287
     {
288
-        if(!$this->supportsLogicKeywords())
288
+        if (!$this->supportsLogicKeywords())
289 289
         {
290 290
             return;
291 291
         }
292 292
         
293 293
         $this->logicKeywords = new Mailcode_Commands_LogicKeywords($this, $this->paramsString);
294 294
         
295
-        if(!$this->logicKeywords->isValid())
295
+        if (!$this->logicKeywords->isValid())
296 296
         {
297 297
             $this->validationResult->makeError(
298 298
                 t('Invalid parameters:').' '.$this->logicKeywords->getErrorMessage(),
@@ -307,14 +307,14 @@  discard block
 block discarded – undo
307 307
     
308 308
     protected function validateSyntax_params_parse() : void
309 309
     {
310
-        if(!$this->requiresParameters())
310
+        if (!$this->requiresParameters())
311 311
         {
312 312
             return;
313 313
         }
314 314
         
315 315
         $this->params = $this->mailcode->getParser()->createStatement($this->paramsString);
316 316
         
317
-        if(!$this->params->isValid())
317
+        if (!$this->params->isValid())
318 318
         {
319 319
             $error = $this->params->getValidationResult();
320 320
             
@@ -331,14 +331,14 @@  discard block
 block discarded – undo
331 331
     
332 332
     protected function validateSyntax_type_supported() : void
333 333
     {
334
-        if(!$this->supportsType() || empty($this->type))
334
+        if (!$this->supportsType() || empty($this->type))
335 335
         {
336 336
             return;
337 337
         }
338 338
         
339 339
         $types = $this->getSupportedTypes();
340 340
 
341
-        if(!in_array($this->type, $types))
341
+        if (!in_array($this->type, $types))
342 342
         {
343 343
             $this->validationResult->makeError(
344 344
                 t('The command addon %1$s is not supported.', $this->type).' '.
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
     
353 353
     protected function validateSyntax_type_unsupported() : void
354 354
     {
355
-        if($this->supportsType() || empty($this->type))
355
+        if ($this->supportsType() || empty($this->type))
356 356
         {
357 357
             return;
358 358
         }
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
     
371 371
     public function getType() : string
372 372
     {
373
-        if($this->supportsType())
373
+        if ($this->supportsType())
374 374
         {
375 375
             return $this->type;
376 376
         }
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
     
391 391
     public function getHighlighted() : string
392 392
     {
393
-        if(!$this->isValid())
393
+        if (!$this->isValid())
394 394
         {
395 395
             return '';
396 396
         }
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
     
402 402
     public function getParamsString() : string
403 403
     {
404
-        if($this->requiresParameters())
404
+        if ($this->requiresParameters())
405 405
         {
406 406
             return $this->paramsString;
407 407
         }
@@ -436,22 +436,22 @@  discard block
 block discarded – undo
436 436
     
437 437
     public final function getCommandType() : string
438 438
     {
439
-        if($this instanceof Mailcode_Commands_Command_Type_Closing)
439
+        if ($this instanceof Mailcode_Commands_Command_Type_Closing)
440 440
         {
441 441
             return 'Closing';
442 442
         }
443 443
         
444
-        if($this instanceof Mailcode_Commands_Command_Type_Opening)
444
+        if ($this instanceof Mailcode_Commands_Command_Type_Opening)
445 445
         {
446 446
             return 'Opening';
447 447
         }
448 448
         
449
-        if($this instanceof Mailcode_Commands_Command_Type_Sibling)
449
+        if ($this instanceof Mailcode_Commands_Command_Type_Sibling)
450 450
         {
451 451
             return 'Sibling';
452 452
         }
453 453
         
454
-        if($this instanceof Mailcode_Commands_Command_Type_Standalone)
454
+        if ($this instanceof Mailcode_Commands_Command_Type_Standalone)
455 455
         {
456 456
             return 'Standalone';
457 457
         }
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
     
502 502
     public function getLogicKeywords() : Mailcode_Commands_LogicKeywords
503 503
     {
504
-        if($this->supportsLogicKeywords() && isset($this->logicKeywords))
504
+        if ($this->supportsLogicKeywords() && isset($this->logicKeywords))
505 505
         {
506 506
             return $this->logicKeywords;
507 507
         }
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command/SetVariable.php 3 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@  discard block
 block discarded – undo
20 20
  */
21 21
 class Mailcode_Commands_Command_SetVariable extends Mailcode_Commands_Command implements Mailcode_Commands_Command_Type_Standalone
22 22
 {
23
-   /**
24
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
25
-    */
23
+    /**
24
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
25
+     */
26 26
     private $variableToken;
27 27
     
28 28
     public function getName() : string
@@ -126,9 +126,9 @@  discard block
 block discarded – undo
126 126
         );
127 127
     }
128 128
     
129
-   /**
130
-    * @return Mailcode_Parser_Statement_Tokenizer_Token[]
131
-    */
129
+    /**
130
+     * @return Mailcode_Parser_Statement_Tokenizer_Token[]
131
+     */
132 132
     public function getAssignmentTokens() : array
133 133
     {
134 134
         $params = $this->params->getInfo()->getTokens();
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,8 +76,7 @@
 block discarded – undo
76 76
         if($val->isValid())
77 77
         {
78 78
             $this->variableToken = $val->getToken();
79
-        }
80
-        else
79
+        } else
81 80
         {
82 81
             $this->validationResult->makeError(
83 82
                 'The first parameter must be a variable name.',
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     {
74 74
         $val = $this->validator->createVariable()->setIndex(0);
75 75
         
76
-        if($val->isValid())
76
+        if ($val->isValid())
77 77
         {
78 78
             $this->variableToken = $val->getToken();
79 79
         }
@@ -90,9 +90,9 @@  discard block
 block discarded – undo
90 90
     {
91 91
         $tokens = $this->params->getInfo()->createPruner()->limitToOperands()->getTokens();
92 92
 
93
-        foreach($tokens as $token)
93
+        foreach ($tokens as $token)
94 94
         {
95
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
95
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
96 96
             {
97 97
                 $this->validateOperand($token);
98 98
             }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
         
109 109
         // ensure that the operand we have in the command is one of the
110 110
         // allowed ones.
111
-        if(!in_array($sign, $allowed))
111
+        if (!in_array($sign, $allowed))
112 112
         {
113 113
             $this->validationResult->makeError(
114 114
                 t('The %1$s sign is not allowed in this command.', '<code>'.$sign.'</code>'),
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     {
122 122
         $tokens = $this->getAssignmentTokens();
123 123
         
124
-        if(empty($tokens))
124
+        if (empty($tokens))
125 125
         {
126 126
             $this->validationResult->makeError(
127 127
                 t('No value assigned to the variable.'),
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     
133 133
     public function getVariable() : Mailcode_Variables_Variable
134 134
     {
135
-        if($this->variableToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
135
+        if ($this->variableToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Variable)
136 136
         {
137 137
             return $this->variableToken->getVariable();
138 138
         }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         $eq = array_shift($params); // equals sign
157 157
         
158 158
         // in case the equals sign was omitted.
159
-        if(!$eq instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
159
+        if (!$eq instanceof Mailcode_Parser_Statement_Tokenizer_Token_Operand)
160 160
         {
161 161
             array_unshift($params, $eq);
162 162
         }
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
         
171 171
         $items = array();
172 172
         
173
-        foreach($tokens as $token)
173
+        foreach ($tokens as $token)
174 174
         {
175 175
             $items[] = $token->getNormalized();
176 176
         }
Please login to merge, or discard this patch.