Passed
Push — master ( deb6f9...02717f )
by Sebastian
03:13
created
src/Mailcode/Parser/Statement/Tokenizer.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -107,9 +107,9 @@  discard block
 block discarded – undo
107 107
     {
108 108
         $result = array();
109 109
         
110
-        foreach($this->tokensOrdered as $token)
110
+        foreach ($this->tokensOrdered as $token)
111 111
         {
112
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Unknown)
112
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Unknown)
113 113
             {
114 114
                 $result[] = $token;
115 115
             }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     {
123 123
         $unknown = $this->getUnknown();
124 124
         
125
-        if(!empty($unknown))
125
+        if (!empty($unknown))
126 126
         {
127 127
             return array_shift($unknown);
128 128
         }
@@ -134,11 +134,11 @@  discard block
 block discarded – undo
134 134
     {
135 135
         $parts = array();
136 136
         
137
-        foreach($this->tokensOrdered as $token)
137
+        foreach ($this->tokensOrdered as $token)
138 138
         {
139 139
             $string = $token->getNormalized();
140 140
             
141
-            if($string != '')
141
+            if ($string != '')
142 142
             {
143 143
                 $parts[] = $string;
144 144
             }
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         $statement = trim($statement);
163 163
         $tokens = array();
164 164
 
165
-        foreach($this->tokenCategories as $tokenCategory)
165
+        foreach ($this->tokenCategories as $tokenCategory)
166 166
         {
167 167
             $processor = $this->createProcessor($tokenCategory, $statement, $tokens);
168 168
             $processor->process();
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 
189 189
         $instance = new $class($this, $statement, $tokens);
190 190
 
191
-        if($instance instanceof Mailcode_Parser_Statement_Tokenizer_Process)
191
+        if ($instance instanceof Mailcode_Parser_Statement_Tokenizer_Process)
192 192
         {
193 193
             return $instance;
194 194
         }
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
      * @param mixed $subject
210 210
      * @return Mailcode_Parser_Statement_Tokenizer_Token
211 211
      */
212
-    public function createToken(string $type, string $matchedText, $subject=null) : Mailcode_Parser_Statement_Tokenizer_Token
212
+    public function createToken(string $type, string $matchedText, $subject = null) : Mailcode_Parser_Statement_Tokenizer_Token
213 213
     {
214 214
         $tokenID = $this->generateID();
215 215
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 
225 225
         $token = $this->appendToken('Keyword', $name);
226 226
 
227
-        if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
227
+        if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword)
228 228
         {
229 229
             return $token;
230 230
         }
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
         foreach ($this->tokensOrdered as $checkToken)
245 245
         {
246
-            if($checkToken->getID() !== $tokenID)
246
+            if ($checkToken->getID() !== $tokenID)
247 247
             {
248 248
                 $keep[] = $checkToken;
249 249
             }
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
      * @param mixed $subject
263 263
      * @return Mailcode_Parser_Statement_Tokenizer_Token
264 264
      */
265
-    protected function appendToken(string $type, string $matchedText, $subject=null) : Mailcode_Parser_Statement_Tokenizer_Token
265
+    protected function appendToken(string $type, string $matchedText, $subject = null) : Mailcode_Parser_Statement_Tokenizer_Token
266 266
     {
267 267
         $token = $this->createToken($type, $matchedText, $subject);
268 268
 
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     {
285 285
         static $alphas;
286 286
 
287
-        if(!isset($alphas))
287
+        if (!isset($alphas))
288 288
         {
289 289
             $alphas = range('A', 'Z');
290 290
         }
@@ -293,12 +293,12 @@  discard block
 block discarded – undo
293 293
 
294 294
         $result = '';
295 295
 
296
-        for($i=0; $i < $amount; $i++)
296
+        for ($i = 0; $i < $amount; $i++)
297 297
         {
298 298
             $result .= $alphas[array_rand($alphas)];
299 299
         }
300 300
 
301
-        if(!in_array($result, self::$ids))
301
+        if (!in_array($result, self::$ids))
302 302
         {
303 303
             self::$ids[] = $result;
304 304
             return $result;
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
      */
313 313
     public function onTokensChanged($callback) : void
314 314
     {
315
-        if(is_callable($callback))
315
+        if (is_callable($callback))
316 316
         {
317 317
             $this->changeHandlers[] = $callback;
318 318
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Process.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * @param string $matchedText
67 67
      * @param mixed $subject
68 68
      */
69
-    protected function registerToken(string $type, string $matchedText, $subject=null) : void
69
+    protected function registerToken(string $type, string $matchedText, $subject = null) : void
70 70
     {
71 71
         $this->tokensTemporary[] = $this->createToken($type, $matchedText, $subject);
72 72
     }
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * @param mixed $subject
78 78
      * @return Mailcode_Parser_Statement_Tokenizer_Token
79 79
      */
80
-    public function createToken(string $type, string $matchedText, $subject=null) : Mailcode_Parser_Statement_Tokenizer_Token
80
+    public function createToken(string $type, string $matchedText, $subject = null) : Mailcode_Parser_Statement_Tokenizer_Token
81 81
     {
82 82
         $token = $this->tokenizer->createToken($type, $matchedText, $subject);
83 83
         $tokenID = $token->getID();
@@ -93,9 +93,9 @@  discard block
 block discarded – undo
93 93
 
94 94
     protected function getTokenByID(string $tokenID) : ?Mailcode_Parser_Statement_Tokenizer_Token
95 95
     {
96
-        foreach($this->tokensTemporary as $token)
96
+        foreach ($this->tokensTemporary as $token)
97 97
         {
98
-            if($token->getID() === $tokenID)
98
+            if ($token->getID() === $tokenID)
99 99
             {
100 100
                 return $token;
101 101
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Process/Keywords.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
     {
11 11
         $keywords = Mailcode_Commands_Keywords::getAll();
12 12
 
13
-        foreach($keywords as $keyword)
13
+        foreach ($keywords as $keyword)
14 14
         {
15
-            if(strstr($this->tokenized, $keyword))
15
+            if (strstr($this->tokenized, $keyword))
16 16
             {
17 17
                 $this->registerToken('Keyword', $keyword);
18 18
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Process/StringLiterals.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
         $matches = array();
12 12
         preg_match_all('/"(.*)"/sxU', $this->tokenized, $matches, PREG_PATTERN_ORDER);
13 13
 
14
-        foreach($matches[0] as $match)
14
+        foreach ($matches[0] as $match)
15 15
         {
16 16
             $this->registerToken('StringLiteral', $match);
17 17
         }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Process/ExtractTokens.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,12 +16,12 @@
 block discarded – undo
16 16
         $parts = ConvertHelper::explodeTrim($this->delimiter, $this->tokenized);
17 17
         $tokens = array();
18 18
 
19
-        foreach($parts as $part)
19
+        foreach ($parts as $part)
20 20
         {
21 21
             $token = $this->getTokenByID($part);
22 22
 
23 23
             // if the entry is a token, simply add it.
24
-            if($token)
24
+            if ($token)
25 25
             {
26 26
                 $tokens[] = $token;
27 27
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Process/Operands.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@
 block discarded – undo
25 25
 
26 26
     protected function _process() : void
27 27
     {
28
-        foreach($this->operands as $operand)
28
+        foreach ($this->operands as $operand)
29 29
         {
30
-            if(strstr($this->tokenized, $operand))
30
+            if (strstr($this->tokenized, $operand))
31 31
             {
32 32
                 $this->registerToken('Operand', $operand);
33 33
             }
Please login to merge, or discard this patch.
src/Mailcode/Parser/Statement/Tokenizer/Process/Numbers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
         $matches = array();
12 12
         preg_match_all('/-*[0-9]+\s*[.,]\s*[0-9]+|-*[0-9]+/sx', $this->tokenized, $matches, PREG_PATTERN_ORDER);
13 13
 
14
-        foreach($matches[0] as $match)
14
+        foreach ($matches[0] as $match)
15 15
         {
16 16
             $this->registerToken('Number', $match);
17 17
         }
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.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.