Passed
Push — master ( 95d9aa...1515ff )
by Sebastian
05:04 queued 13s
created
src/Mailcode/Parser/Statement/Tokenizer.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
     {
136 136
         $result = array();
137 137
         
138
-        foreach($this->tokensOrdered as $token)
138
+        foreach ($this->tokensOrdered as $token)
139 139
         {
140
-            if($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Unknown)
140
+            if ($token instanceof Mailcode_Parser_Statement_Tokenizer_Token_Unknown)
141 141
             {
142 142
                 $result[] = $token;
143 143
             }
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     {
151 151
         $unknown = $this->getUnknown();
152 152
         
153
-        if(!empty($unknown))
153
+        if (!empty($unknown))
154 154
         {
155 155
             return array_shift($unknown);
156 156
         }
@@ -162,11 +162,11 @@  discard block
 block discarded – undo
162 162
     {
163 163
         $parts = array();
164 164
         
165
-        foreach($this->tokensOrdered as $token)
165
+        foreach ($this->tokensOrdered as $token)
166 166
         {
167 167
             $string = $token->getNormalized();
168 168
             
169
-            if($string != '')
169
+            if ($string != '')
170 170
             {
171 171
                 $parts[] = $string;
172 172
             }
@@ -179,11 +179,11 @@  discard block
 block discarded – undo
179 179
     {
180 180
         $this->tokenized = trim($statement);
181 181
         
182
-        foreach($this->tokenCategories as $token)
182
+        foreach ($this->tokenCategories as $token)
183 183
         {
184 184
             $method = 'tokenize_'.$token;
185 185
             
186
-            if(!method_exists($this, $method))
186
+            if (!method_exists($this, $method))
187 187
             {
188 188
                 throw new Mailcode_Exception(
189 189
                     'Unknown statement token.',
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
     * @param string $matchedText
208 208
     * @param mixed $subject
209 209
     */
210
-    protected function registerToken(string $type, string $matchedText, $subject=null) : void
210
+    protected function registerToken(string $type, string $matchedText, $subject = null) : void
211 211
     {
212 212
         $tokenID = $this->generateID();
213 213
         
@@ -224,9 +224,9 @@  discard block
 block discarded – undo
224 224
     
225 225
     protected function getTokenByID(string $tokenID) : ?Mailcode_Parser_Statement_Tokenizer_Token
226 226
     {
227
-        foreach($this->tokensTemporary as $token)
227
+        foreach ($this->tokensTemporary as $token)
228 228
         {
229
-            if($token->getID() === $tokenID)
229
+            if ($token->getID() === $tokenID)
230 230
             {
231 231
                 return $token;
232 232
             }
@@ -242,9 +242,9 @@  discard block
 block discarded – undo
242 242
     
243 243
     protected function tokenize_keywords() : void
244 244
     {
245
-        foreach($this->keywords as $keyword)
245
+        foreach ($this->keywords as $keyword)
246 246
         {
247
-            if(strstr($this->tokenized, $keyword))
247
+            if (strstr($this->tokenized, $keyword))
248 248
             {
249 249
                 $this->registerToken('Keyword', $keyword);
250 250
             }
@@ -258,12 +258,12 @@  discard block
 block discarded – undo
258 258
         // over that could not be tokenized.
259 259
         $parts = \AppUtils\ConvertHelper::explodeTrim($this->delimiter, $this->tokenized);
260 260
 
261
-        foreach($parts as $part)
261
+        foreach ($parts as $part)
262 262
         {
263 263
             $token = $this->getTokenByID($part);
264 264
             
265 265
             // if the entry is a token, simply add it.
266
-            if($token)
266
+            if ($token)
267 267
             {
268 268
                 $this->tokensOrdered[] = $token;
269 269
             }
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     {
280 280
         $vars = Mailcode::create()->findVariables($this->tokenized)->getGroupedByHash();
281 281
         
282
-        foreach($vars as $var)
282
+        foreach ($vars as $var)
283 283
         {
284 284
             $this->registerToken('Variable', $var->getMatchedText(), $var);
285 285
         }
@@ -287,9 +287,9 @@  discard block
 block discarded – undo
287 287
     
288 288
     protected function tokenize_operands() : void
289 289
     {
290
-        foreach($this->operands as $operand)
290
+        foreach ($this->operands as $operand)
291 291
         {
292
-            if(strstr($this->tokenized, $operand))
292
+            if (strstr($this->tokenized, $operand))
293 293
             {
294 294
                 $this->registerToken('Operand', $operand);
295 295
             }
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
         $matches = array();
302 302
         preg_match_all('/"(.*)"/sx', $this->tokenized, $matches, PREG_PATTERN_ORDER);
303 303
         
304
-        foreach($matches[0] as $match)
304
+        foreach ($matches[0] as $match)
305 305
         {
306 306
             $this->registerToken('StringLiteral', $match);
307 307
         }
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
         $matches = array();
313 313
         preg_match_all('/-*[0-9]+\s*[.,]\s*[0-9]+|-*[0-9]+/sx', $this->tokenized, $matches, PREG_PATTERN_ORDER);
314 314
         
315
-        foreach($matches[0] as $match)
315
+        foreach ($matches[0] as $match)
316 316
         {
317 317
             $this->registerToken('Number', $match);
318 318
         }
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
     {
330 330
         static $alphas;
331 331
         
332
-        if(!isset($alphas))
332
+        if (!isset($alphas))
333 333
         {
334 334
             $alphas = range('A', 'Z');
335 335
         }
@@ -338,12 +338,12 @@  discard block
 block discarded – undo
338 338
         
339 339
         $result = '';
340 340
         
341
-        for($i=0; $i < $amount; $i++)
341
+        for ($i = 0; $i < $amount; $i++)
342 342
         {
343 343
             $result .= $alphas[array_rand($alphas)];
344 344
         }
345 345
         
346
-        if(!in_array($result, self::$ids))
346
+        if (!in_array($result, self::$ids))
347 347
         {
348 348
             self::$ids[] = $result;
349 349
             return $result;
Please login to merge, or discard this patch.
src/Mailcode/Parser/Safeguard.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     */
135 135
     public function setDelimiter(string $delimiter) : Mailcode_Parser_Safeguard
136 136
     {
137
-        if(empty($delimiter))
137
+        if (empty($delimiter))
138 138
         {
139 139
             throw new Mailcode_Exception(
140 140
                 'Empty delimiter',
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $safe = str_replace(array_values($replaces), array_keys($replaces), $this->originalString);
187 187
 
188 188
         // If a formatter has been selected, let it modify the string.
189
-        if(isset($this->formatter))
189
+        if (isset($this->formatter))
190 190
         {
191 191
             $safe = $this->formatter->format($safe);
192 192
         }
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
     {
199 199
         $class = 'Mailcode\Mailcode_Parser_Safeguard_Formatter_'.$formatterID;
200 200
         
201
-        if(class_exists($class))
201
+        if (class_exists($class))
202 202
         {
203 203
             $this->formatter = new $class($this);
204 204
             
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     {
225 225
         $formatter = $this->selectFormatter('SingleLines');
226 226
         
227
-        if($formatter instanceof Mailcode_Parser_Safeguard_Formatter_SingleLines)
227
+        if ($formatter instanceof Mailcode_Parser_Safeguard_Formatter_SingleLines)
228 228
         {
229 229
             return $formatter;
230 230
         }
@@ -246,21 +246,21 @@  discard block
 block discarded – undo
246 246
     * @param bool $highlighted
247 247
     * @return string[]string
248 248
     */
249
-    protected function getReplaces(bool $highlighted=false, bool $normalize=false) : array
249
+    protected function getReplaces(bool $highlighted = false, bool $normalize = false) : array
250 250
     {
251 251
         $placeholders = $this->getPlaceholders();
252 252
         
253 253
         $replaces = array();
254 254
         
255
-        foreach($placeholders as $placeholder)
255
+        foreach ($placeholders as $placeholder)
256 256
         {
257 257
             $replace = '';
258 258
             
259
-            if($highlighted)
259
+            if ($highlighted)
260 260
             {
261 261
                 $replace = $placeholder->getHighlightedText();
262 262
             }
263
-            else if($normalize)
263
+            else if ($normalize)
264 264
             {
265 265
                 $replace = $placeholder->getNormalizedText();
266 266
             }
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
     */
285 285
     public function getPlaceholders()
286 286
     {
287
-        if(isset($this->placeholders))
287
+        if (isset($this->placeholders))
288 288
         {
289 289
             return $this->placeholders;
290 290
         }
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
         
294 294
         $cmds = $this->getCollection()->getGroupedByHash();
295 295
         
296
-        foreach($cmds as $command)
296
+        foreach ($cmds as $command)
297 297
         {
298 298
             self::$counter++;
299 299
             
@@ -307,9 +307,9 @@  discard block
 block discarded – undo
307 307
         return $this->placeholders;
308 308
     }
309 309
     
310
-    protected function restore(string $string, bool $partial=false, bool $highlighted=false) : string
310
+    protected function restore(string $string, bool $partial = false, bool $highlighted = false) : string
311 311
     {
312
-        if(!$partial)
312
+        if (!$partial)
313 313
         {
314 314
             $this->requireValidCollection();
315 315
         }
@@ -318,9 +318,9 @@  discard block
 block discarded – undo
318 318
         
319 319
         $placeholderStrings = array_keys($replaces);
320 320
         
321
-        foreach($placeholderStrings as $search)
321
+        foreach ($placeholderStrings as $search)
322 322
         {
323
-            if(!$partial && !strstr($string, $search))
323
+            if (!$partial && !strstr($string, $search))
324 324
             {
325 325
                 throw new Mailcode_Exception(
326 326
                     'Command placeholder not found',
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
     */
423 423
     public function getCollection() : Mailcode_Collection
424 424
     {
425
-        if(isset($this->collection))
425
+        if (isset($this->collection))
426 426
         {
427 427
             return $this->collection;
428 428
         }
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
     */
445 445
     protected function requireValidCollection() : void
446 446
     {
447
-        if($this->getCollection()->isValid())
447
+        if ($this->getCollection()->isValid())
448 448
         {
449 449
             return;
450 450
         }
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
     */
468 468
     public function getPlaceholderStrings() : array
469 469
     {
470
-        if(is_array($this->placeholderStrings))
470
+        if (is_array($this->placeholderStrings))
471 471
         {
472 472
             return $this->placeholderStrings;
473 473
         }
@@ -476,7 +476,7 @@  discard block
 block discarded – undo
476 476
         
477 477
         $this->placeholderStrings = array();
478 478
         
479
-        foreach($placeholders as $placeholder)
479
+        foreach ($placeholders as $placeholder)
480 480
         {
481 481
             $this->placeholderStrings[] = $placeholder->getReplacementText();
482 482
         }
@@ -502,9 +502,9 @@  discard block
 block discarded – undo
502 502
     {
503 503
         $placeholders = $this->getPlaceholders();
504 504
         
505
-        foreach($placeholders as $placeholder)
505
+        foreach ($placeholders as $placeholder)
506 506
         {
507
-            if($placeholder->getID() === $id)
507
+            if ($placeholder->getID() === $id)
508 508
             {
509 509
                 return $placeholder;
510 510
             }
@@ -531,9 +531,9 @@  discard block
 block discarded – undo
531 531
     {
532 532
         $placeholders = $this->getPlaceholders();
533 533
         
534
-        foreach($placeholders as $placeholder)
534
+        foreach ($placeholders as $placeholder)
535 535
         {
536
-            if($placeholder->getReplacementText() === $string)
536
+            if ($placeholder->getReplacementText() === $string)
537 537
             {
538 538
                 return $placeholder;
539 539
             }
Please login to merge, or discard this patch.