Passed
Pull Request — master (#17)
by
unknown
03:33
created
tools/translator.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,8 +40,7 @@  discard block
 block discarded – undo
40 40
     try
41 41
     {
42 42
         $translated = translateMailcode($commandsText, $activeSyntax);
43
-    }
44
-    catch (Mailcode_Exception $e)
43
+    } catch (Mailcode_Exception $e)
45 44
     {
46 45
         $translated = '';
47 46
         $error = $e->getMessage();
@@ -146,8 +145,7 @@  discard block
 block discarded – undo
146 145
                         <?php pt('No commands specified.') ?>
147 146
                     </div>
148 147
                 <?php
149
-            }
150
-            else if($error)
148
+            } else if($error)
151 149
             {
152 150
                 ?>
153 151
                     <div class="alert alert-danger">
@@ -155,8 +153,7 @@  discard block
 block discarded – undo
155 153
                         <?php echo $error ?>
156 154
                     </div>
157 155
                 <?php
158
-            }
159
-            else
156
+            } else
160 157
             {
161 158
                 ?>
162 159
                     <textarea class="form-control" rows="10"><?php echo htmlspecialchars($translated) ?></textarea>
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/ProtectedContent.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,7 @@
 block discarded – undo
70 70
          if($this->isMailcodeEnabled())
71 71
          {
72 72
              $collection = Mailcode::create()->parseString($this->getContent());
73
-         }
74
-         else
73
+         } else
75 74
          {
76 75
              $collection = new Mailcode_Collection();
77 76
          }
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/QueryParamsTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,8 +129,7 @@
 block discarded – undo
129 129
         if(isset($params[$name]))
130 130
         {
131 131
             $params[$name]->setValue($value);
132
-        }
133
-        else
132
+        } else
134 133
         {
135 134
             $this->addParam($name, $value);
136 135
         }
Please login to merge, or discard this patch.
src/Mailcode/Traits/Commands/Validation/BreakAtTrait.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,8 +125,7 @@
 block discarded – undo
125 125
         if(is_numeric($breakAt))
126 126
         {
127 127
             $token = $info->addNumber((string)(int)$breakAt);
128
-        }
129
-        else if($breakAt instanceof Mailcode_Variables_Variable)
128
+        } else if($breakAt instanceof Mailcode_Variables_Variable)
130 129
         {
131 130
             $token = $info->addVariable($breakAt);
132 131
         }
Please login to merge, or discard this patch.
tools/syntax-highlighter.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,8 +36,7 @@  discard block
 block discarded – undo
36 36
         $safeguard = $mailcode->createSafeguard($commandsText);
37 37
         $safe = htmlspecialchars($safeguard->makeSafe(), ENT_QUOTES, 'UTF-8');
38 38
         $highlighted = $safeguard->makeHighlighted($safe);
39
-    }
40
-    catch (Mailcode_Exception $e)
39
+    } catch (Mailcode_Exception $e)
41 40
     {
42 41
         $error = $e->getMessage();
43 42
 
@@ -99,8 +98,7 @@  discard block
 block discarded – undo
99 98
                         <?php pt('No commands specified.') ?>
100 99
                     </div>
101 100
                 <?php
102
-            }
103
-            else if($error)
101
+            } else if($error)
104 102
             {
105 103
                 ?>
106 104
                     <div class="alert alert-danger">
@@ -108,8 +106,7 @@  discard block
 block discarded – undo
108 106
                         <?php echo $error ?>
109 107
                     </div>
110 108
                 <?php
111
-            }
112
-            else
109
+            } else
113 110
             {
114 111
                 ?>
115 112
                     <pre style="border: solid 1px #ccc;padding:12px;border-radius: 5px"><?php
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity/ShowSnippetTranslation.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@
 block discarded – undo
35 35
                 '%s.replaceAll($esc.newline, "<br/>")',
36 36
                 $varName
37 37
             );
38
-        }
39
-        else
38
+        } else
40 39
         {
41 40
             $statement = sprintf(
42 41
                 '%s',
Please login to merge, or discard this patch.
Translator/Syntax/ApacheVelocity/Contains/ContainsStatementBuilder.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -120,8 +120,7 @@
 block discarded – undo
120 120
         if($this->isList())
121 121
         {
122 122
             $command = $this->renderListCommand($searchTerm);
123
-        }
124
-        else
123
+        } else
125 124
         {
126 125
             $command = $this->renderRegularCommand($searchTerm);
127 126
         }
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity/Base/AbstractIfBase.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,7 @@
 block discarded – undo
40 40
             if($keyCommand instanceof Mailcode_Commands_IfBase)
41 41
             {
42 42
                 $body .= ' '.$this->getSign($keyword).' '.$this->translateBody($keyCommand);
43
-            }
44
-            else
43
+            } else
45 44
             {
46 45
                 throw new Mailcode_Exception(
47 46
                     'Keyword command type does not match expected base class.',
Please login to merge, or discard this patch.
src/Mailcode/Translator/Syntax/ApacheVelocity/ShowVariableTranslation.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,8 +25,7 @@  discard block
 block discarded – undo
25 25
         if($command->isDecryptionEnabled())
26 26
         {
27 27
             $varName = $this->renderDecryptionKey($command);
28
-        }
29
-        else
28
+        } else
30 29
         {
31 30
             $varName = undollarize($command->getVariableName());
32 31
         }
@@ -45,8 +44,7 @@  discard block
 block discarded – undo
45 44
                 dollarize($command->getVariableName()),
46 45
                 $keyName
47 46
             );
48
-        }
49
-        else
47
+        } else
50 48
         {
51 49
             // This will make the decryption system use the system's
52 50
             // default key name.
Please login to merge, or discard this patch.