Passed
Push — master ( ad7522...d3eb9e )
by Sebastian
05:45
created
src/Mailcode/Traits/Commands/Validation/ListPropertyVariable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         // Split the variable name by the dot
38 38
         $parts = explode('.', ltrim($var->getFullName(), '$'));
39 39
 
40
-        if(count($parts) !== 2)
40
+        if (count($parts) !== 2)
41 41
         {
42 42
             $this->validationResult->makeError(
43 43
                 t('The variable %1$s is not a list property:', '<code>'.$var->getFullName().'</code>').' '.
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function getListVariable() : Mailcode_Variables_Variable
71 71
     {
72
-        if(isset($this->listVariable))
72
+        if (isset($this->listVariable))
73 73
         {
74 74
             return $this->listVariable;
75 75
         }
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command.php 2 patches
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     private $nestingValidated = false;
120 120
 
121
-    public function __construct(string $type='', string $paramsString='', string $matchedText='')
121
+    public function __construct(string $type = '', string $paramsString = '', string $matchedText = '')
122 122
     {
123 123
         $this->type = $type;
124 124
         $this->paramsString = html_entity_decode($paramsString);
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     {
186 186
         $this->requireNonDummy();
187 187
         
188
-        if($this->hash === '') {
188
+        if ($this->hash === '') {
189 189
             $this->hash = md5($this->matchedText);
190 190
         }
191 191
         
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
     
195 195
     protected function requireNonDummy() : void
196 196
     {
197
-        if(!$this->isDummy())
197
+        if (!$this->isDummy())
198 198
         {
199 199
             return;
200 200
         }
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
     
214 214
     protected function validate() : OperationResult
215 215
     {
216
-        if(!$this->validated)
216
+        if (!$this->validated)
217 217
         {
218 218
             $this->requireNonDummy();
219 219
             $this->validateSyntax();
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     
227 227
     public function getValidationResult() :  OperationResult
228 228
     {
229
-        if(isset($this->validationResult)) 
229
+        if (isset($this->validationResult)) 
230 230
         {
231 231
             return $this->validationResult;
232 232
         }
@@ -242,10 +242,10 @@  discard block
 block discarded – undo
242 242
     {
243 243
         $validations = $this->resolveValidations();
244 244
 
245
-        foreach($validations as $validation)
245
+        foreach ($validations as $validation)
246 246
         {
247 247
             // break off at the first validation issue
248
-            if(!$this->validateSyntaxMethod($validation))
248
+            if (!$this->validateSyntaxMethod($validation))
249 249
             {
250 250
                 return;
251 251
             }
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
     {
265 265
         $method = 'validateSyntax_'.$validation;
266 266
         
267
-        if(!method_exists($this, $method))
267
+        if (!method_exists($this, $method))
268 268
         {
269 269
             throw new Mailcode_Exception(
270 270
                 'Missing validation method ['.$validation.']',
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
 
295 295
     public function validateNesting() : OperationResult
296 296
     {
297
-        if($this->nestingValidated)
297
+        if ($this->nestingValidated)
298 298
         {
299 299
             return $this->validationResult;
300 300
         }
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
     
319 319
     public function getType() : string
320 320
     {
321
-        if($this->supportsType())
321
+        if ($this->supportsType())
322 322
         {
323 323
             return $this->type;
324 324
         }
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
     
339 339
     public function getHighlighted() : string
340 340
     {
341
-        if(!$this->isValid())
341
+        if (!$this->isValid())
342 342
         {
343 343
             return '';
344 344
         }
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
     
350 350
     public function getParamsString() : string
351 351
     {
352
-        if($this->requiresParameters())
352
+        if ($this->requiresParameters())
353 353
         {
354 354
             return $this->paramsString;
355 355
         }
@@ -380,22 +380,22 @@  discard block
 block discarded – undo
380 380
     
381 381
     public final function getCommandType() : string
382 382
     {
383
-        if($this instanceof Mailcode_Commands_Command_Type_Closing)
383
+        if ($this instanceof Mailcode_Commands_Command_Type_Closing)
384 384
         {
385 385
             return 'Closing';
386 386
         }
387 387
         
388
-        if($this instanceof Mailcode_Commands_Command_Type_Opening)
388
+        if ($this instanceof Mailcode_Commands_Command_Type_Opening)
389 389
         {
390 390
             return 'Opening';
391 391
         }
392 392
         
393
-        if($this instanceof Mailcode_Commands_Command_Type_Sibling)
393
+        if ($this instanceof Mailcode_Commands_Command_Type_Sibling)
394 394
         {
395 395
             return 'Sibling';
396 396
         }
397 397
         
398
-        if($this instanceof Mailcode_Commands_Command_Type_Standalone)
398
+        if ($this instanceof Mailcode_Commands_Command_Type_Standalone)
399 399
         {
400 400
             return 'Standalone';
401 401
         }
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
     
435 435
     public function getLogicKeywords() : Mailcode_Commands_LogicKeywords
436 436
     {
437
-        if($this->supportsLogicKeywords() && isset($this->logicKeywords))
437
+        if ($this->supportsLogicKeywords() && isset($this->logicKeywords))
438 438
         {
439 439
             return $this->logicKeywords;
440 440
         }
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
 
455 455
     public function getTranslationParam(string $name)
456 456
     {
457
-        if(isset($this->translationParams[$name]))
457
+        if (isset($this->translationParams[$name]))
458 458
         {
459 459
             return $this->translationParams[$name];
460 460
         }
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
         return null;
463 463
     }
464 464
 
465
-    public function setURLEncoding(bool $encoding=true)
465
+    public function setURLEncoding(bool $encoding = true)
466 466
     {
467 467
         $this->requireURLEncoding();
468 468
 
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
         return $this;
472 472
     }
473 473
 
474
-    public function setURLDecoding(bool $decode=true)
474
+    public function setURLDecoding(bool $decode = true)
475 475
     {
476 476
         $this->requireURLEncoding();
477 477
 
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
 
483 483
     protected function requireURLEncoding() : void
484 484
     {
485
-        if($this->supportsURLEncoding()) {
485
+        if ($this->supportsURLEncoding()) {
486 486
             return;
487 487
         }
488 488
 
Please login to merge, or discard this patch.
Indentation   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -43,44 +43,44 @@  discard block
 block discarded – undo
43 43
 
44 44
     public const META_URL_ENCODING = 'url_encoding';
45 45
 
46
-   /**
47
-    * @var string
48
-    */
46
+    /**
47
+     * @var string
48
+     */
49 49
     protected $type = '';
50 50
 
51
-   /**
52
-    * @var string
53
-    */
51
+    /**
52
+     * @var string
53
+     */
54 54
     protected $paramsString = '';
55 55
     
56
-   /**
57
-    * @var string
58
-    */
56
+    /**
57
+     * @var string
58
+     */
59 59
     protected $matchedText = '';
60 60
 
61
-   /**
62
-    * @var string
63
-    */
61
+    /**
62
+     * @var string
63
+     */
64 64
     protected $hash = '';
65 65
     
66
-   /**
67
-    * @var OperationResult
68
-    */
66
+    /**
67
+     * @var OperationResult
68
+     */
69 69
     protected $validationResult = null;
70 70
     
71
-   /**
72
-    * @var Mailcode
73
-    */
71
+    /**
72
+     * @var Mailcode
73
+     */
74 74
     protected $mailcode;
75 75
     
76
-   /**
77
-    * @var Mailcode_Parser_Statement
78
-    */
76
+    /**
77
+     * @var Mailcode_Parser_Statement
78
+     */
79 79
     protected $params;
80 80
 
81
-   /**
82
-    * @var string[] 
83
-    */
81
+    /**
82
+     * @var string[] 
83
+     */
84 84
     protected $validations = array(
85 85
         Mailcode_Interfaces_Commands_Validation_EmptyParams::VALIDATION_NAME_EMPTY_PARAMS,
86 86
         Mailcode_Interfaces_Commands_Validation_ParamKeywords::VALIDATION_NAME_KEYWORDS,
@@ -89,24 +89,24 @@  discard block
 block discarded – undo
89 89
         Mailcode_Interfaces_Commands_Validation_TypeUnsupported::VALIDATION_NAME_TYPE_UNSUPPORTED
90 90
     );
91 91
     
92
-   /**
93
-    * @var string
94
-    */
92
+    /**
93
+     * @var string
94
+     */
95 95
     protected $comment = '';
96 96
     
97
-   /**
98
-    * @var Mailcode_Commands_LogicKeywords|NULL
99
-    */
97
+    /**
98
+     * @var Mailcode_Commands_LogicKeywords|NULL
99
+     */
100 100
     protected $logicKeywords;
101 101
     
102
-   /**
103
-    * @var Mailcode_Parser_Statement_Validator
104
-    */
102
+    /**
103
+     * @var Mailcode_Parser_Statement_Validator
104
+     */
105 105
     protected $validator;
106 106
     
107
-   /**
108
-    * @var boolean
109
-    */
107
+    /**
108
+     * @var boolean
109
+     */
110 110
     private $validated = false;
111 111
 
112 112
     /**
@@ -141,13 +141,13 @@  discard block
 block discarded – undo
141 141
         
142 142
     }
143 143
 
144
-   /**
145
-    * Sets the command's parent opening command, if any.
146
-    * NOTE: This is set automatically by the parser, and
147
-    * should not be called manually.
148
-    *
149
-    * @param Mailcode_Commands_Command $command
150
-    */
144
+    /**
145
+     * Sets the command's parent opening command, if any.
146
+     * NOTE: This is set automatically by the parser, and
147
+     * should not be called manually.
148
+     *
149
+     * @param Mailcode_Commands_Command $command
150
+     */
151 151
     public function setParent(Mailcode_Commands_Command $command) : void
152 152
     {
153 153
         $this->parent = $command;
@@ -289,9 +289,9 @@  discard block
 block discarded – undo
289 289
         return $this->validationResult->isValid();
290 290
     }
291 291
     
292
-   /**
293
-    * @return string[]
294
-    */
292
+    /**
293
+     * @return string[]
294
+     */
295 295
     abstract protected function getValidations() : array;
296 296
 
297 297
     protected function _validateNesting() : void
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command/For.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     
100 100
     public function getSourceVariable() : Mailcode_Variables_Variable
101 101
     {
102
-        if(isset($this->sourceVar))
102
+        if (isset($this->sourceVar))
103 103
         {
104 104
             return $this->sourceVar->getVariable();
105 105
         }
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     
114 114
     public function getLoopVariable() : Mailcode_Variables_Variable
115 115
     {
116
-        if(isset($this->loopVar))
116
+        if (isset($this->loopVar))
117 117
         {
118 118
             return $this->loopVar->getVariable();
119 119
         }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $this->keyword = $info->getKeywordByIndex(1);
134 134
         $this->sourceVar = $info->getVariableByIndex(2);
135 135
         
136
-        if(!$this->loopVar || !$this->keyword || !$this->sourceVar)
136
+        if (!$this->loopVar || !$this->keyword || !$this->sourceVar)
137 137
         {
138 138
             $this->validationResult->makeError(
139 139
                 t('Not a valid for loop.').' '.t('Is the %1$s keyword missing?', 'in:'),
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     
147 147
     protected function validateSyntax_keyword() : void
148 148
     {
149
-        if($this->keyword->isForIn())
149
+        if ($this->keyword->isForIn())
150 150
         {
151 151
             return;
152 152
         }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     
160 160
     protected function validateSyntax_variable_names() : void
161 161
     {
162
-        if($this->sourceVar->getVariable()->getFullName() !== $this->loopVar->getVariable()->getFullName())
162
+        if ($this->sourceVar->getVariable()->getFullName() !== $this->loopVar->getVariable()->getFullName())
163 163
         {
164 164
             return;
165 165
         }
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 
177 177
         $parts = explode('.', $name);
178 178
 
179
-        if(count($parts) === 1) {
179
+        if (count($parts) === 1) {
180 180
             return;
181 181
         }
182 182
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 
194 194
         $parts = explode('.', $name);
195 195
 
196
-        if(count($parts) === 1) {
196
+        if (count($parts) === 1) {
197 197
             return;
198 198
         }
199 199
 
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,19 +32,19 @@
 block discarded – undo
32 32
     public const VALIDATION_VARIABLE_NAME_WITH_DOT = 49704;
33 33
     public const VALIDATION_LOOP_VARIABLE_NAME_WITH_DOT = 49705;
34 34
     
35
-   /**
36
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
37
-    */
35
+    /**
36
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
37
+     */
38 38
     private $loopVar;
39 39
     
40
-   /**
41
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
42
-    */
40
+    /**
41
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Variable|NULL
42
+     */
43 43
     private $sourceVar;
44 44
     
45
-   /**
46
-    * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
47
-    */
45
+    /**
46
+     * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL
47
+     */
48 48
     private $keyword;
49 49
     
50 50
     public function getName() : string
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/URLAnalyzer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,23 +56,23 @@
 block discarded – undo
56 56
 
57 57
     private function analyzeURL(string $url) : void
58 58
     {
59
-        if(stristr($url, 'tel:') !== false)
59
+        if (stristr($url, 'tel:') !== false)
60 60
         {
61 61
             return;
62 62
         }
63 63
 
64 64
         $placeholders = $this->safeguard->getPlaceholders();
65 65
 
66
-        foreach($placeholders as $placeholder)
66
+        foreach ($placeholders as $placeholder)
67 67
         {
68 68
             $command = $placeholder->getCommand();
69 69
 
70
-            if(!$command->supportsURLEncoding())
70
+            if (!$command->supportsURLEncoding())
71 71
             {
72 72
                 continue;
73 73
             }
74 74
 
75
-            if(strstr($url, $placeholder->getReplacementText()) !== false && !$command->isURLDecoded())
75
+            if (strstr($url, $placeholder->getReplacementText()) !== false && !$command->isURLDecoded())
76 76
             {
77 77
                 $command->setURLEncoding(true);
78 78
                 break;
Please login to merge, or discard this patch.
src/Mailcode/Traits/Formatting/HTMLHighlighting.php 2 patches
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -23,25 +23,25 @@  discard block
 block discarded – undo
23 23
  */
24 24
 trait Mailcode_Traits_Formatting_HTMLHighlighting
25 25
 {
26
-   /**
27
-    * Stored this way so we can use isset() instead
28
-    * of using in_array, which is some magnitudes slower.
29
-    * The boolean value is not used otherwise.
30
-    *
31
-    * @var array<string,bool>
32
-    */
26
+    /**
27
+     * Stored this way so we can use isset() instead
28
+     * of using in_array, which is some magnitudes slower.
29
+     * The boolean value is not used otherwise.
30
+     *
31
+     * @var array<string,bool>
32
+     */
33 33
     private $excludeTags = array(
34 34
         'style' => true, // NOTE: style tags are excluded natively on the parser level.
35 35
         'script' => true
36 36
     );
37 37
     
38
-   /**
39
-    * Adds an HTML tag name to the list of tags within which
40
-    * commands may not be highlighted.
41
-    *
42
-    * @param string $tagName Case insensitive.
43
-    * @return $this
44
-    */
38
+    /**
39
+     * Adds an HTML tag name to the list of tags within which
40
+     * commands may not be highlighted.
41
+     *
42
+     * @param string $tagName Case insensitive.
43
+     * @return $this
44
+     */
45 45
     public function excludeTag(string $tagName)
46 46
     {
47 47
         $tagName = strtolower($tagName);
@@ -51,12 +51,12 @@  discard block
 block discarded – undo
51 51
         return $this;
52 52
     }
53 53
     
54
-   /**
55
-    * Adds several exluded tag names at once.
56
-    *
57
-    * @param string[] $tagNames
58
-    * @return $this
59
-    */
54
+    /**
55
+     * Adds several exluded tag names at once.
56
+     *
57
+     * @param string[] $tagNames
58
+     * @return $this
59
+     */
60 60
     public function excludeTags(array $tagNames)
61 61
     {
62 62
         foreach($tagNames as $tagName)
@@ -67,12 +67,12 @@  discard block
 block discarded – undo
67 67
         return $this;
68 68
     }
69 69
     
70
-   /**
71
-    * Whether the specified tag name is in the exlusion list.
72
-    *
73
-    * @param string $tagName
74
-    * @return bool
75
-    */
70
+    /**
71
+     * Whether the specified tag name is in the exlusion list.
72
+     *
73
+     * @param string $tagName
74
+     * @return bool
75
+     */
76 76
     public function isTagExcluded(string $tagName) : bool
77 77
     {
78 78
         $tagName = strtolower($tagName);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     */
60 60
     public function excludeTags(array $tagNames)
61 61
     {
62
-        foreach($tagNames as $tagName)
62
+        foreach ($tagNames as $tagName)
63 63
         {
64 64
             $this->excludeTag((string)$tagName);
65 65
         }
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/CaseSensitive.php 2 patches
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_CaseSensitive
28 28
 {
29
-   /**
30
-    * @var boolean
31
-    */
29
+    /**
30
+     * @var boolean
31
+     */
32 32
     protected $caseInsensitive = 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 $regexToken;
38 38
     
39 39
     protected function validateSyntax_case_sensitive() : void
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         
43 43
         $this->caseInsensitive = $val->isValid();
44 44
         
45
-        if($val->isValid())
45
+        if ($val->isValid())
46 46
         {
47 47
             $this->regexToken = $val->getToken();
48 48
         }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     
56 56
     public function getCaseToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword
57 57
     {
58
-        if($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
58
+        if ($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
59 59
         {
60 60
             return $this->regexToken;
61 61
         }
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/RegexEnabled.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
         $this->regexEnabled = $val->isValid();
44 44
 
45
-        if($val->isValid())
45
+        if ($val->isValid())
46 46
         {
47 47
             $this->regexToken = $val->getToken();
48 48
         }
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function getRegexToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword
57 57
     {
58
-        if($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
58
+        if ($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
59 59
         {
60 60
             return $this->regexToken;
61 61
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Validator.php 2 patches
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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,11 +74,11 @@
 block discarded – undo
74 74
         return new Mailcode_Parser_Statement_Validator_Type_Value($this->statement);
75 75
     }
76 76
     
77
-    public function createOperand(string $sign='') : Mailcode_Parser_Statement_Validator_Type_Operand
77
+    public function createOperand(string $sign = '') : Mailcode_Parser_Statement_Validator_Type_Operand
78 78
     {
79 79
         $validate = new Mailcode_Parser_Statement_Validator_Type_Operand($this->statement);
80 80
         
81
-        if(!empty($sign))
81
+        if (!empty($sign))
82 82
         {
83 83
             $validate->setOperandSign($sign);
84 84
         }
Please login to merge, or discard this patch.
src/Mailcode/Collection.php 2 patches
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      */
60 60
     public function addCommand(Mailcode_Commands_Command $command) : Mailcode_Collection
61 61
     {
62
-        if($this->finalized)
62
+        if ($this->finalized)
63 63
         {
64 64
             throw new Mailcode_Exception(
65 65
                 'Cannot add commands to a finalized collection',
@@ -118,9 +118,9 @@  discard block
 block discarded – undo
118 118
     {
119 119
         $keep = array();
120 120
 
121
-        foreach($this->commands as $existing)
121
+        foreach ($this->commands as $existing)
122 122
         {
123
-            if($existing !== $command)
123
+            if ($existing !== $command)
124 124
             {
125 125
                 $keep[] = $existing;
126 126
             }
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
         
139 139
         $errors = $this->errors;
140 140
         
141
-        if(!$result->isValid())
141
+        if (!$result->isValid())
142 142
         {
143 143
             $errors[] = new Mailcode_Collection_Error_Message(
144 144
                 '',
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     {
155 155
         $errors = $this->getErrors();
156 156
         
157
-        if(!empty($errors))
157
+        if (!empty($errors))
158 158
         {
159 159
             return array_shift($errors);
160 160
         }
@@ -201,11 +201,11 @@  discard block
 block discarded – undo
201 201
 
202 202
         $hashes = array();
203 203
         
204
-        foreach($this->commands as $command)
204
+        foreach ($this->commands as $command)
205 205
         {
206 206
             $hash = $command->getHash();
207 207
             
208
-            if(!isset($hashes[$hash]))
208
+            if (!isset($hashes[$hash]))
209 209
             {
210 210
                 $hashes[$hash] = $command;
211 211
             }
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      */
224 224
     public function addCommands(array $commands) : Mailcode_Collection
225 225
     {
226
-        foreach($commands as $command)
226
+        foreach ($commands as $command)
227 227
         {
228 228
             $this->addCommand($command);
229 229
         }
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 
247 247
         $collection = new Mailcode_Variables_Collection_Regular();
248 248
         
249
-        foreach($this->commands as $command)
249
+        foreach ($this->commands as $command)
250 250
         {
251 251
             $collection->mergeWith($command->getVariables());
252 252
         }
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
 
275 275
     private function validate() : void
276 276
     {
277
-        if(isset($this->validationResult) || $this->validating)
277
+        if (isset($this->validationResult) || $this->validating)
278 278
         {
279 279
             return;
280 280
         }
@@ -294,9 +294,9 @@  discard block
 block discarded – undo
294 294
     {
295 295
         $errors = $this->getErrors();
296 296
         
297
-        foreach($errors as $error)
297
+        foreach ($errors as $error)
298 298
         {
299
-            if($error->getCode() === $code)
299
+            if ($error->getCode() === $code)
300 300
             {
301 301
                 return true;
302 302
             }
@@ -364,9 +364,9 @@  discard block
 block discarded – undo
364 364
     {
365 365
         $result = array();
366 366
 
367
-        foreach($this->commands as $command)
367
+        foreach ($this->commands as $command)
368 368
         {
369
-            if($command instanceof $className)
369
+            if ($command instanceof $className)
370 370
             {
371 371
                 $result[] = $command;
372 372
             }
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
     {
380 380
         $commands = $this->getCommands();
381 381
         
382
-        if(!empty($commands))
382
+        if (!empty($commands))
383 383
         {
384 384
             return array_shift($commands);
385 385
         }
@@ -401,11 +401,11 @@  discard block
 block discarded – undo
401 401
 
402 402
     private function validateNesting() : void
403 403
     {
404
-        foreach($this->commands as $command)
404
+        foreach ($this->commands as $command)
405 405
         {
406 406
             $command->validateNesting();
407 407
 
408
-            if(!$command->isValid()) {
408
+            if (!$command->isValid()) {
409 409
                 $this->addInvalidCommand($command);
410 410
             }
411 411
         }
Please login to merge, or discard this patch.
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
     public const ERROR_CANNOT_RETRIEVE_FIRST_ERROR = 52301;
26 26
     public const ERROR_CANNOT_MODIFY_FINALIZED = 52302;
27 27
     
28
-   /**
29
-    * @var Mailcode_Commands_Command[]
30
-    */
28
+    /**
29
+     * @var Mailcode_Commands_Command[]
30
+     */
31 31
     protected $commands = array();
32 32
     
33 33
     /**
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
      */
36 36
     protected $errors = array();
37 37
     
38
-   /**
39
-    * @var OperationResult|NULL
40
-    */
38
+    /**
39
+     * @var OperationResult|NULL
40
+     */
41 41
     protected $validationResult;
42 42
 
43 43
     /**
@@ -77,21 +77,21 @@  discard block
 block discarded – undo
77 77
         return $this;
78 78
     }
79 79
     
80
-   /**
81
-    * Whether there are any commands in the collection.
82
-    * 
83
-    * @return bool
84
-    */
80
+    /**
81
+     * Whether there are any commands in the collection.
82
+     * 
83
+     * @return bool
84
+     */
85 85
     public function hasCommands() : bool
86 86
     {
87 87
         return !empty($this->commands);
88 88
     }
89 89
     
90
-   /**
91
-    * Counts the amount of commands in the collection.
92
-    * 
93
-    * @return int
94
-    */
90
+    /**
91
+     * Counts the amount of commands in the collection.
92
+     * 
93
+     * @return int
94
+     */
95 95
     public function countCommands() : int
96 96
     {
97 97
         return count($this->commands);
@@ -129,9 +129,9 @@  discard block
 block discarded – undo
129 129
         $this->commands = $keep;
130 130
     }
131 131
     
132
-   /**
133
-    * @return Mailcode_Collection_Error[]
134
-    */
132
+    /**
133
+     * @return Mailcode_Collection_Error[]
134
+     */
135 135
     public function getErrors()
136 136
     {
137 137
         $result = $this->getValidationResult();
@@ -173,12 +173,12 @@  discard block
 block discarded – undo
173 173
         return empty($errors);
174 174
     }
175 175
     
176
-   /**
177
-    * Retrieves all commands that were detected, in the exact order
178
-    * they were found.
179
-    * 
180
-    * @return Mailcode_Commands_Command[]
181
-    */
176
+    /**
177
+     * Retrieves all commands that were detected, in the exact order
178
+     * they were found.
179
+     * 
180
+     * @return Mailcode_Commands_Command[]
181
+     */
182 182
     public function getCommands()
183 183
     {
184 184
         $this->validate();
@@ -329,10 +329,10 @@  discard block
 block discarded – undo
329 329
     }
330 330
 
331 331
     /**
332
-    * Retrieves only show variable commands in the collection, if any.
333
-    * 
334
-    * @return Mailcode_Commands_Command_ShowVariable[]
335
-    */
332
+     * Retrieves only show variable commands in the collection, if any.
333
+     * 
334
+     * @return Mailcode_Commands_Command_ShowVariable[]
335
+     */
336 336
     public function getShowVariableCommands(): array
337 337
     {
338 338
         return $this->getCommandsByClass(Mailcode_Commands_Command_ShowVariable::class);
@@ -346,11 +346,11 @@  discard block
 block discarded – undo
346 346
         return $this->getCommandsByClass(Mailcode_Commands_Command_For::class);
347 347
     }
348 348
 
349
-   /**
350
-    * Retrieves only show date commands in the collection, if any.
351
-    *
352
-    * @return Mailcode_Commands_Command_ShowDate[]
353
-    */
349
+    /**
350
+     * Retrieves only show date commands in the collection, if any.
351
+     *
352
+     * @return Mailcode_Commands_Command_ShowDate[]
353
+     */
354 354
     public function getShowDateCommands() : array
355 355
     {
356 356
         return $this->getCommandsByClass(Mailcode_Commands_Command_ShowDate::class);
Please login to merge, or discard this patch.