Passed
Push — master ( 724bce...8ec95d )
by Sebastian
04:58
created
src/Mailcode/Parser.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         
81 81
         $total = count($matches[0]);
82 82
         
83
-        for($i=0; $i < $total; $i++)
83
+        for ($i = 0; $i < $total; $i++)
84 84
         {
85 85
             $match = $this->parseMatch($matches, $i);
86 86
             
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     
93 93
     protected function prepareString(string $subject) : string
94 94
     {
95
-        if(!ConvertHelper::isStringHTML($subject))
95
+        if (!ConvertHelper::isStringHTML($subject))
96 96
         {
97 97
             return $subject;
98 98
         }
@@ -142,17 +142,17 @@  discard block
 block discarded – undo
142 142
     private function handleNesting(Mailcode_Commands_Command $cmd) : void
143 143
     {
144 144
         // Set the command's parent from the stack, if any is present.
145
-        if(!empty($this->stack))
145
+        if (!empty($this->stack))
146 146
         {
147 147
             $cmd->setParent($this->getStackLast());
148 148
         }
149 149
 
150 150
         // Handle opening and closing commands, adding and removing from the stack.
151
-        if($cmd instanceof Mailcode_Commands_Command_Type_Opening)
151
+        if ($cmd instanceof Mailcode_Commands_Command_Type_Opening)
152 152
         {
153 153
             $this->stack[] = $cmd;
154 154
         }
155
-        else if($cmd instanceof Mailcode_Commands_Command_Type_Closing)
155
+        else if ($cmd instanceof Mailcode_Commands_Command_Type_Closing)
156 156
         {
157 157
             array_pop($this->stack);
158 158
         }
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     {
163 163
         $cmd = $this->stack[array_key_last($this->stack)];
164 164
 
165
-        if($cmd instanceof Mailcode_Commands_Command)
165
+        if ($cmd instanceof Mailcode_Commands_Command)
166 166
         {
167 167
             return $cmd;
168 168
         }
@@ -191,16 +191,16 @@  discard block
 block discarded – undo
191 191
         // 5 = parameter type command, type
192 192
         // 6 = parameter type command, params
193 193
         
194
-        if(!empty($matches[1][$index]))
194
+        if (!empty($matches[1][$index]))
195 195
         {
196 196
             $name = $matches[1][$index];
197 197
         }
198
-        else if(!empty($matches[2][$index]))
198
+        else if (!empty($matches[2][$index]))
199 199
         {
200 200
             $name = $matches[2][$index];
201 201
             $params = $matches[3][$index];
202 202
         }
203
-        else if(!empty($matches[4][$index]))
203
+        else if (!empty($matches[4][$index]))
204 204
         {
205 205
             $name = $matches[4][$index];
206 206
             $type = $matches[5][$index];
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
     * @param bool $freeform
237 237
     * @return Mailcode_Parser_Statement
238 238
     */
239
-    public function createStatement(string $statement, bool $freeform=false) : Mailcode_Parser_Statement
239
+    public function createStatement(string $statement, bool $freeform = false) : Mailcode_Parser_Statement
240 240
     {
241 241
         return new Mailcode_Parser_Statement($statement, $freeform);
242 242
     }
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/ProtectedContent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     public function protectContent(string $string, Mailcode_Parser_Safeguard_Placeholder $open, Mailcode_Parser_Safeguard_Placeholder $end) : string
35 35
     {
36
-        if(!$end->getCommand() instanceof Mailcode_Commands_Command_End)
36
+        if (!$end->getCommand() instanceof Mailcode_Commands_Command_End)
37 37
         {
38 38
             throw new Mailcode_Exception(
39 39
                 'Invalid commands nesting',
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
         $start = strpos($string, $open->getReplacementText()) + $open->getReplacementLength();
46 46
         $end = strpos($string, $end->getReplacementText());
47 47
 
48
-        $content = substr($string, $start, ($end-$start));
48
+        $content = substr($string, $start, ($end - $start));
49 49
 
50 50
         return $this->replaceContent($string, $content);
51 51
     }
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:'))
59
+        if (stristr($url, 'tel:'))
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()) && !$command->isURLDecoded())
75
+            if (strstr($url, $placeholder->getReplacementText()) && !$command->isURLDecoded())
76 76
             {
77 77
                 $command->setURLEncoding(true);
78 78
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
         $placeholders = $this->getPlaceholders();
181 181
         $string = $this->originalString;
182 182
         
183
-        foreach($placeholders as $placeholder)
183
+        foreach ($placeholders as $placeholder)
184 184
         {
185 185
             $string = $this->makePlaceholderSafe($string, $placeholder);
186 186
         }
@@ -210,14 +210,14 @@  discard block
 block discarded – undo
210 210
         $placeholders = $this->getPlaceholders();
211 211
         $total = count($placeholders);
212 212
 
213
-        for($i=0; $i < $total; $i++)
213
+        for ($i = 0; $i < $total; $i++)
214 214
         {
215 215
             $placeholder = $placeholders[$i];
216 216
             $command = $placeholder->getCommand();
217 217
 
218
-            if($command instanceof Mailcode_Interfaces_Commands_ProtectedContent)
218
+            if ($command instanceof Mailcode_Interfaces_Commands_ProtectedContent)
219 219
             {
220
-                $string = $command->protectContent($string, $placeholder, $placeholders[$i+1]);
220
+                $string = $command->protectContent($string, $placeholder, $placeholders[$i + 1]);
221 221
             }
222 222
         }
223 223
 
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     {
229 229
         $pos = mb_strpos($string, $placeholder->getOriginalText());
230 230
 
231
-        if($pos === false)
231
+        if ($pos === false)
232 232
         {
233 233
             throw new Mailcode_Exception(
234 234
                 'Placeholder original text not found',
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
     */
268 268
     public function createFormatting($subject) : Mailcode_Parser_Safeguard_Formatting
269 269
     {
270
-        if(is_string($subject))
270
+        if (is_string($subject))
271 271
         {
272 272
             $subject = Mailcode::create()->createString($subject);
273 273
         }
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
     */
284 284
     public function getPlaceholders()
285 285
     {
286
-        if(isset($this->placeholders))
286
+        if (isset($this->placeholders))
287 287
         {
288 288
             return $this->placeholders;
289 289
         }
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
         
293 293
         $cmds = $this->getCollection()->getCommands();
294 294
         
295
-        foreach($cmds as $command)
295
+        foreach ($cmds as $command)
296 296
         {
297 297
             self::$counter++;
298 298
             
@@ -313,21 +313,21 @@  discard block
 block discarded – undo
313 313
      * @return string
314 314
      * @throws Mailcode_Exception
315 315
      */
316
-    protected function restore(string $string, bool $partial=false, bool $highlighted=false) : string
316
+    protected function restore(string $string, bool $partial = false, bool $highlighted = false) : string
317 317
     {
318
-        if(!$partial)
318
+        if (!$partial)
319 319
         {
320 320
             $this->requireValidCollection();
321 321
         }
322 322
         
323 323
         $formatting = $this->createFormatting($string);
324 324
 
325
-        if($partial)
325
+        if ($partial)
326 326
         {
327 327
             $formatting->makePartial();
328 328
         }
329 329
         
330
-        if($highlighted)
330
+        if ($highlighted)
331 331
         {
332 332
             $formatting->replaceWithHTMLHighlighting();
333 333
         }
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
         {
348 348
             $command = $placeholder->getCommand();
349 349
 
350
-            if($command instanceof Mailcode_Interfaces_Commands_ProtectedContent)
350
+            if ($command instanceof Mailcode_Interfaces_Commands_ProtectedContent)
351 351
             {
352 352
                 $string = $command->restoreContent($string);
353 353
             }
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
     */
441 441
     public function getCollection() : Mailcode_Collection
442 442
     {
443
-        if(isset($this->collection))
443
+        if (isset($this->collection))
444 444
         {
445 445
             return $this->collection;
446 446
         }
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
     */
463 463
     protected function requireValidCollection() : void
464 464
     {
465
-        if($this->getCollection()->isValid())
465
+        if ($this->getCollection()->isValid())
466 466
         {
467 467
             return;
468 468
         }
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
     */
486 486
     public function getPlaceholderStrings() : array
487 487
     {
488
-        if(is_array($this->placeholderStrings))
488
+        if (is_array($this->placeholderStrings))
489 489
         {
490 490
             return $this->placeholderStrings;
491 491
         }
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
         
495 495
         $this->placeholderStrings = array();
496 496
         
497
-        foreach($placeholders as $placeholder)
497
+        foreach ($placeholders as $placeholder)
498 498
         {
499 499
             $this->placeholderStrings[] = $placeholder->getReplacementText();
500 500
         }
@@ -520,9 +520,9 @@  discard block
 block discarded – undo
520 520
     {
521 521
         $placeholders = $this->getPlaceholders();
522 522
         
523
-        foreach($placeholders as $placeholder)
523
+        foreach ($placeholders as $placeholder)
524 524
         {
525
-            if($placeholder->getID() === $id)
525
+            if ($placeholder->getID() === $id)
526 526
             {
527 527
                 return $placeholder;
528 528
             }
@@ -549,9 +549,9 @@  discard block
 block discarded – undo
549 549
     {
550 550
         $placeholders = $this->getPlaceholders();
551 551
         
552
-        foreach($placeholders as $placeholder)
552
+        foreach ($placeholders as $placeholder)
553 553
         {
554
-            if($placeholder->getReplacementText() === $string)
554
+            if ($placeholder->getReplacementText() === $string)
555 555
             {
556 556
                 return $placeholder;
557 557
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/DelimiterValidator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     private function validate() : OperationResult
46 46
     {
47
-        if(empty($this->delimiter))
47
+        if (empty($this->delimiter))
48 48
         {
49 49
             return $this->makeError(
50 50
                 'Delimiters may not be empty.',
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             );
53 53
         }
54 54
 
55
-        if(strlen($this->delimiter) < 2)
55
+        if (strlen($this->delimiter) < 2)
56 56
         {
57 57
             return $this->makeError(
58 58
                 'The delimiter must have at least 2 characters in length.',
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
         $encoded = urlencode($this->delimiter);
64 64
 
65
-        if($encoded !== $this->delimiter)
65
+        if ($encoded !== $this->delimiter)
66 66
         {
67 67
             return $this->makeError(
68 68
                 'The delimiter is not URL encoding neutral: it must not be modified by a urlencode() call.',
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
     public function throwExceptionIfInvalid() : void
77 77
     {
78
-        if($this->isValid()) {
78
+        if ($this->isValid()) {
79 79
             return;
80 80
         }
81 81
 
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard/Placeholder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     
70 70
     public function getReplacementText() : string
71 71
     {
72
-        if(!empty($this->replacement))
72
+        if (!empty($this->replacement))
73 73
         {
74 74
             return $this->replacement;
75 75
         }
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
         
70 70
         // All other special characters have to be escaped
71 71
         // with two backslashes. 
72
-        foreach($this->regexSpecialChars as $char)
72
+        foreach ($this->regexSpecialChars as $char)
73 73
         {
74 74
             $string = str_replace($char, '\\'.$char, $string);
75 75
         }
Please login to merge, or discard this patch.
src/Mailcode/Collection.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     */
54 54
     public function addCommand(Mailcode_Commands_Command $command) : Mailcode_Collection
55 55
     {
56
-        if($this->finalized)
56
+        if ($this->finalized)
57 57
         {
58 58
             throw new Mailcode_Exception(
59 59
                 'Cannot add commands to a finalized collection',
@@ -112,9 +112,9 @@  discard block
 block discarded – undo
112 112
     {
113 113
         $keep = array();
114 114
 
115
-        foreach($this->commands as $existing)
115
+        foreach ($this->commands as $existing)
116 116
         {
117
-            if($existing !== $command)
117
+            if ($existing !== $command)
118 118
             {
119 119
                 $keep[] = $existing;
120 120
             }
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         
133 133
         $errors = $this->errors;
134 134
         
135
-        if(!$result->isValid())
135
+        if (!$result->isValid())
136 136
         {
137 137
             $errors[] = new Mailcode_Collection_Error_Message(
138 138
                 '',
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     {
149 149
         $errors = $this->getErrors();
150 150
         
151
-        if(!empty($errors))
151
+        if (!empty($errors))
152 152
         {
153 153
             return array_shift($errors);
154 154
         }
@@ -190,11 +190,11 @@  discard block
 block discarded – undo
190 190
     {
191 191
         $hashes = array();
192 192
         
193
-        foreach($this->commands as $command)
193
+        foreach ($this->commands as $command)
194 194
         {
195 195
             $hash = $command->getHash();
196 196
             
197
-            if(!isset($hashes[$hash]))
197
+            if (!isset($hashes[$hash]))
198 198
             {
199 199
                 $hashes[$hash] = $command;
200 200
             }
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
     */
212 212
     public function addCommands(array $commands) : Mailcode_Collection
213 213
     {
214
-        foreach($commands as $command)
214
+        foreach ($commands as $command)
215 215
         {
216 216
             $this->addCommand($command);
217 217
         }
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
     {
233 233
         $collection = new Mailcode_Variables_Collection_Regular();
234 234
         
235
-        foreach($this->commands as $command)
235
+        foreach ($this->commands as $command)
236 236
         {
237 237
             $collection->mergeWith($command->getVariables());
238 238
         }
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
     
243 243
     public function getValidationResult() : OperationResult
244 244
     {
245
-        if($this->validationResult instanceof OperationResult)
245
+        if ($this->validationResult instanceof OperationResult)
246 246
         {
247 247
             return $this->validationResult;
248 248
         }
@@ -258,9 +258,9 @@  discard block
 block discarded – undo
258 258
     {
259 259
         $errors = $this->getErrors();
260 260
         
261
-        foreach($errors as $error)
261
+        foreach ($errors as $error)
262 262
         {
263
-            if($error->getCode() === $code)
263
+            if ($error->getCode() === $code)
264 264
             {
265 265
                 return true;
266 266
             }
@@ -316,9 +316,9 @@  discard block
 block discarded – undo
316 316
     {
317 317
         $result = array();
318 318
 
319
-        foreach($this->commands as $command)
319
+        foreach ($this->commands as $command)
320 320
         {
321
-            if($command instanceof $className)
321
+            if ($command instanceof $className)
322 322
             {
323 323
                 $result[] = $command;
324 324
             }
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
     {
332 332
         $commands = $this->getCommands();
333 333
         
334
-        if(!empty($commands))
334
+        if (!empty($commands))
335 335
         {
336 336
             return array_shift($commands);
337 337
         }
@@ -353,11 +353,11 @@  discard block
 block discarded – undo
353 353
 
354 354
     private function validateNesting() : void
355 355
     {
356
-        foreach($this->commands as $command)
356
+        foreach ($this->commands as $command)
357 357
         {
358 358
             $command->validateNesting();
359 359
 
360
-            if(!$command->isValid()) {
360
+            if (!$command->isValid()) {
361 361
                 $this->addInvalidCommand($command);
362 362
             }
363 363
         }
Please login to merge, or discard this patch.
src/Mailcode/Commands/Command.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      */
131 131
     private $nestingValidated = false;
132 132
 
133
-    public function __construct(string $type='', string $paramsString='', string $matchedText='')
133
+    public function __construct(string $type = '', string $paramsString = '', string $matchedText = '')
134 134
     {
135 135
         $this->type = $type;
136 136
         $this->paramsString = html_entity_decode($paramsString);
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     {
227 227
         $this->requireNonDummy();
228 228
         
229
-        if($this->hash === '') {
229
+        if ($this->hash === '') {
230 230
             $this->hash = md5($this->matchedText);
231 231
         }
232 232
         
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     
236 236
     protected function requireNonDummy() : void
237 237
     {
238
-        if(!$this->isDummy())
238
+        if (!$this->isDummy())
239 239
         {
240 240
             return;
241 241
         }
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
     
255 255
     protected function validate() : OperationResult
256 256
     {
257
-        if(!$this->validated)
257
+        if (!$this->validated)
258 258
         {
259 259
             $this->requireNonDummy();
260 260
             $this->validateSyntax();
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
     
268 268
     public function getValidationResult() :  OperationResult
269 269
     {
270
-        if(isset($this->validationResult)) 
270
+        if (isset($this->validationResult)) 
271 271
         {
272 272
             return $this->validationResult;
273 273
         }
@@ -283,10 +283,10 @@  discard block
 block discarded – undo
283 283
     {
284 284
         $validations = $this->resolveValidations();
285 285
 
286
-        foreach($validations as $validation)
286
+        foreach ($validations as $validation)
287 287
         {
288 288
             // break off at the first validation issue
289
-            if(!$this->validateSyntaxMethod($validation))
289
+            if (!$this->validateSyntaxMethod($validation))
290 290
             {
291 291
                 return;
292 292
             }
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
     {
306 306
         $method = 'validateSyntax_'.$validation;
307 307
         
308
-        if(!method_exists($this, $method))
308
+        if (!method_exists($this, $method))
309 309
         {
310 310
             throw new Mailcode_Exception(
311 311
                 'Missing validation method ['.$validation.']',
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 
336 336
     public function validateNesting() : OperationResult
337 337
     {
338
-        if($this->nestingValidated)
338
+        if ($this->nestingValidated)
339 339
         {
340 340
             return $this->validationResult;
341 341
         }
@@ -359,7 +359,7 @@  discard block
 block discarded – undo
359 359
     
360 360
     public function getType() : string
361 361
     {
362
-        if($this->supportsType())
362
+        if ($this->supportsType())
363 363
         {
364 364
             return $this->type;
365 365
         }
@@ -379,7 +379,7 @@  discard block
 block discarded – undo
379 379
     
380 380
     public function getHighlighted() : string
381 381
     {
382
-        if(!$this->isValid())
382
+        if (!$this->isValid())
383 383
         {
384 384
             return '';
385 385
         }
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
     
391 391
     public function getParamsString() : string
392 392
     {
393
-        if($this->requiresParameters())
393
+        if ($this->requiresParameters())
394 394
         {
395 395
             return $this->paramsString;
396 396
         }
@@ -427,22 +427,22 @@  discard block
 block discarded – undo
427 427
     
428 428
     public final function getCommandType() : string
429 429
     {
430
-        if($this instanceof Mailcode_Commands_Command_Type_Closing)
430
+        if ($this instanceof Mailcode_Commands_Command_Type_Closing)
431 431
         {
432 432
             return 'Closing';
433 433
         }
434 434
         
435
-        if($this instanceof Mailcode_Commands_Command_Type_Opening)
435
+        if ($this instanceof Mailcode_Commands_Command_Type_Opening)
436 436
         {
437 437
             return 'Opening';
438 438
         }
439 439
         
440
-        if($this instanceof Mailcode_Commands_Command_Type_Sibling)
440
+        if ($this instanceof Mailcode_Commands_Command_Type_Sibling)
441 441
         {
442 442
             return 'Sibling';
443 443
         }
444 444
         
445
-        if($this instanceof Mailcode_Commands_Command_Type_Standalone)
445
+        if ($this instanceof Mailcode_Commands_Command_Type_Standalone)
446 446
         {
447 447
             return 'Standalone';
448 448
         }
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
     
493 493
     public function getLogicKeywords() : Mailcode_Commands_LogicKeywords
494 494
     {
495
-        if($this->supportsLogicKeywords() && isset($this->logicKeywords))
495
+        if ($this->supportsLogicKeywords() && isset($this->logicKeywords))
496 496
         {
497 497
             return $this->logicKeywords;
498 498
         }
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
     */
527 527
     public function getTranslationParam(string $name)
528 528
     {
529
-        if(isset($this->translationParams[$name]))
529
+        if (isset($this->translationParams[$name]))
530 530
         {
531 531
             return $this->translationParams[$name];
532 532
         }
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
      * @param bool $encoding
539 539
      * @return $this
540 540
      */
541
-    public function setURLEncoding(bool $encoding=true)
541
+    public function setURLEncoding(bool $encoding = true)
542 542
     {
543 543
         $this->requireURLEncoding();
544 544
 
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
      * @return $this
555 555
      * @throws Mailcode_Exception
556 556
      */
557
-    public function setURLDecoding(bool $decode=true)
557
+    public function setURLDecoding(bool $decode = true)
558 558
     {
559 559
         $this->requireURLEncoding();
560 560
 
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
 
566 566
     protected function requireURLEncoding() : void
567 567
     {
568
-        if($this->supportsURLEncoding()) {
568
+        if ($this->supportsURLEncoding()) {
569 569
             return;
570 570
         }
571 571
 
Please login to merge, or discard this patch.