@@ -65,12 +65,16 @@ |
||
65 | 65 | Mailcode_Factory::misc()->comment('Some comments here'), |
66 | 66 | Mailcode_Factory::show()->snippet('snippet_name'), |
67 | 67 | Mailcode_Factory::show()->date('DATE.VARIABLE'), |
68 | - Mailcode_Factory::if()->if('1 + 1 == 2'), |
|
68 | + Mailcode_Factory::if() { |
|
69 | + ->if('1 + 1 == 2'), |
|
69 | 70 | Mailcode_Factory::if()->contains('CUSTOMER.NAME', array('John')), |
70 | 71 | Mailcode_Factory::if()->varEquals('NUMBER', '124'), |
71 | 72 | ); |
73 | + } |
|
72 | 74 | |
73 | - $and = Mailcode_Factory::elseIf()->varEqualsString('STRINGVAR', 'John'); |
|
75 | + $and = Mailcode_Factory::elseIf() { |
|
76 | + ->varEqualsString('STRINGVAR', 'John'); |
|
77 | + } |
|
74 | 78 | $and->getLogicKeywords()->appendOR('$STRINGVAR == "Steve"', "variable"); |
75 | 79 | |
76 | 80 | $commands[] = $and; |
@@ -120,8 +120,7 @@ |
||
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 | } |
@@ -51,8 +51,7 @@ |
||
51 | 51 | if(!empty($matches[3][$idx])) |
52 | 52 | { |
53 | 53 | $this->addSingle($matches[3][$idx], $matchedText, $sourceCommand); |
54 | - } |
|
55 | - else |
|
54 | + } else |
|
56 | 55 | { |
57 | 56 | $this->addPathed($matches[1][$idx], $matches[2][$idx], $matchedText, $sourceCommand); |
58 | 57 | } |
@@ -40,8 +40,7 @@ discard block |
||
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 |
||
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 |
||
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> |
@@ -35,8 +35,7 @@ |
||
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', |
@@ -70,8 +70,7 @@ |
||
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 | } |
@@ -129,8 +129,7 @@ |
||
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 | } |