@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | */ |
21 | 21 | class Mailcode_Factory_CommandSets_Set_ElseIf extends Mailcode_Factory_CommandSets_IfBase |
22 | 22 | { |
23 | - public function elseIf(string $condition, string $type='') : Mailcode_Commands_Command_ElseIf |
|
23 | + public function elseIf (string $condition, string $type = '') : Mailcode_Commands_Command_ElseIf |
|
24 | 24 | { |
25 | 25 | $command = $this->instantiator->buildIf('ElseIf', $condition, $type); |
26 | 26 | |
27 | - if($command instanceof Mailcode_Commands_Command_ElseIf) |
|
27 | + if ($command instanceof Mailcode_Commands_Command_ElseIf) |
|
28 | 28 | { |
29 | 29 | return $command; |
30 | 30 | } |
@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | throw $this->instantiator->exceptionUnexpectedType('ElseIf', $command); |
33 | 33 | } |
34 | 34 | |
35 | - public function var(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
35 | + public function var(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
36 | 36 | { |
37 | 37 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, $operand, $value, $quoteValue); |
38 | 38 | |
39 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
39 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
40 | 40 | { |
41 | 41 | return $command; |
42 | 42 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | { |
49 | 49 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, $operand, $value, true); |
50 | 50 | |
51 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
51 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
52 | 52 | { |
53 | 53 | return $command; |
54 | 54 | } |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | throw $this->instantiator->exceptionUnexpectedType('ElseIfVarString', $command); |
57 | 57 | } |
58 | 58 | |
59 | - public function varEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
59 | + public function varEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
60 | 60 | { |
61 | 61 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, '==', $value, $quoteValue); |
62 | 62 | |
63 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
63 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
64 | 64 | { |
65 | 65 | return $command; |
66 | 66 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | { |
73 | 73 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, '==', $value, true); |
74 | 74 | |
75 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
75 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
76 | 76 | { |
77 | 77 | return $command; |
78 | 78 | } |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | throw $this->instantiator->exceptionUnexpectedType('ElseIfVarEqualsString', $command); |
81 | 81 | } |
82 | 82 | |
83 | - public function varNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
83 | + public function varNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
84 | 84 | { |
85 | 85 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, '!=', $value, $quoteValue); |
86 | 86 | |
87 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
87 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
88 | 88 | { |
89 | 89 | return $command; |
90 | 90 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | { |
97 | 97 | $command = $this->instantiator->buildIfVar('ElseIf', $variable, '!=', $value, true); |
98 | 98 | |
99 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
99 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Variable) |
|
100 | 100 | { |
101 | 101 | return $command; |
102 | 102 | } |
@@ -111,11 +111,11 @@ discard block |
||
111 | 111 | * @return Mailcode_Commands_Command_ElseIf_Contains |
112 | 112 | * @throws Mailcode_Factory_Exception |
113 | 113 | */ |
114 | - public function contains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains |
|
114 | + public function contains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_Contains |
|
115 | 115 | { |
116 | 116 | $command = $this->instantiator->buildIfContains('ElseIf', $variable, $searchTerms, $caseInsensitive); |
117 | 117 | |
118 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Contains) |
|
118 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Contains) |
|
119 | 119 | { |
120 | 120 | return $command; |
121 | 121 | } |
@@ -130,11 +130,11 @@ discard block |
||
130 | 130 | * @return Mailcode_Commands_Command_ElseIf_NotContains |
131 | 131 | * @throws Mailcode_Factory_Exception |
132 | 132 | */ |
133 | - public function notContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_NotContains |
|
133 | + public function notContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_NotContains |
|
134 | 134 | { |
135 | 135 | $command = $this->instantiator->buildIfNotContains('ElseIf', $variable, $searchTerms, $caseInsensitive); |
136 | 136 | |
137 | - if($command instanceof Mailcode_Commands_Command_ElseIf_NotContains) |
|
137 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_NotContains) |
|
138 | 138 | { |
139 | 139 | return $command; |
140 | 140 | } |
@@ -150,11 +150,11 @@ discard block |
||
150 | 150 | * @return Mailcode_Commands_Command_ElseIf_ListContains |
151 | 151 | * @throws Mailcode_Factory_Exception |
152 | 152 | */ |
153 | - public function listContains(string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_Command_ElseIf_ListContains |
|
153 | + public function listContains(string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_Command_ElseIf_ListContains |
|
154 | 154 | { |
155 | 155 | $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive, $regexEnabled); |
156 | 156 | |
157 | - if($command instanceof Mailcode_Commands_Command_ElseIf_ListContains) |
|
157 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_ListContains) |
|
158 | 158 | { |
159 | 159 | return $command; |
160 | 160 | } |
@@ -169,11 +169,11 @@ discard block |
||
169 | 169 | * @return Mailcode_Commands_Command_ElseIf_ListEquals |
170 | 170 | * @throws Mailcode_Factory_Exception |
171 | 171 | */ |
172 | - public function listEquals(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_ListEquals |
|
172 | + public function listEquals(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_ListEquals |
|
173 | 173 | { |
174 | 174 | $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive, false, 'list-equals'); |
175 | 175 | |
176 | - if($command instanceof Mailcode_Commands_Command_ElseIf_ListEquals) |
|
176 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_ListEquals) |
|
177 | 177 | { |
178 | 178 | return $command; |
179 | 179 | } |
@@ -189,11 +189,11 @@ discard block |
||
189 | 189 | * @return Mailcode_Commands_Command_ElseIf_ListNotContains |
190 | 190 | * @throws Mailcode_Factory_Exception |
191 | 191 | */ |
192 | - public function listNotContains(string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_Command_ElseIf_ListNotContains |
|
192 | + public function listNotContains(string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_Command_ElseIf_ListNotContains |
|
193 | 193 | { |
194 | 194 | $command = $this->instantiator->buildIfListNotContains('ElseIf', $variable, $searchTerms, $caseInsensitive, $regexEnabled); |
195 | 195 | |
196 | - if($command instanceof Mailcode_Commands_Command_ElseIf_ListNotContains) |
|
196 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_ListNotContains) |
|
197 | 197 | { |
198 | 198 | return $command; |
199 | 199 | } |
@@ -209,11 +209,11 @@ discard block |
||
209 | 209 | * @return Mailcode_Commands_Command_ElseIf_ListBeginsWith |
210 | 210 | * @throws Mailcode_Factory_Exception |
211 | 211 | */ |
212 | - public function listBeginsWith(string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_Command_ElseIf_ListBeginsWith |
|
212 | + public function listBeginsWith(string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_Command_ElseIf_ListBeginsWith |
|
213 | 213 | { |
214 | 214 | $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive, $regexEnabled, 'list-begins-with'); |
215 | 215 | |
216 | - if($command instanceof Mailcode_Commands_Command_ElseIf_ListBeginsWith) |
|
216 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_ListBeginsWith) |
|
217 | 217 | { |
218 | 218 | return $command; |
219 | 219 | } |
@@ -229,11 +229,11 @@ discard block |
||
229 | 229 | * @return Mailcode_Commands_Command_ElseIf_ListEndsWith |
230 | 230 | * @throws Mailcode_Factory_Exception |
231 | 231 | */ |
232 | - public function listEndsWith(string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_Command_ElseIf_ListEndsWith |
|
232 | + public function listEndsWith(string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_Command_ElseIf_ListEndsWith |
|
233 | 233 | { |
234 | 234 | $command = $this->instantiator->buildIfListContains('ElseIf', $variable, $searchTerms, $caseInsensitive, $regexEnabled, 'list-ends-with'); |
235 | 235 | |
236 | - if($command instanceof Mailcode_Commands_Command_ElseIf_ListEndsWith) |
|
236 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_ListEndsWith) |
|
237 | 237 | { |
238 | 238 | return $command; |
239 | 239 | } |
@@ -241,11 +241,11 @@ discard block |
||
241 | 241 | throw $this->instantiator->exceptionUnexpectedType('ElseIfListEndsWith', $command); |
242 | 242 | } |
243 | 243 | |
244 | - public function beginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
244 | + public function beginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
245 | 245 | { |
246 | 246 | $command = $this->instantiator->buildIfBeginsWith('ElseIf', $variable, $search, $caseInsensitive); |
247 | 247 | |
248 | - if($command instanceof Mailcode_Commands_Command_ElseIf_BeginsWith) |
|
248 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_BeginsWith) |
|
249 | 249 | { |
250 | 250 | return $command; |
251 | 251 | } |
@@ -253,11 +253,11 @@ discard block |
||
253 | 253 | throw $this->instantiator->exceptionUnexpectedType('ElseIfBeginsWith', $command); |
254 | 254 | } |
255 | 255 | |
256 | - public function endsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
256 | + public function endsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
257 | 257 | { |
258 | 258 | $command = $this->instantiator->buildIfEndsWith('ElseIf', $variable, $search, $caseInsensitive); |
259 | 259 | |
260 | - if($command instanceof Mailcode_Commands_Command_ElseIf_EndsWith) |
|
260 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_EndsWith) |
|
261 | 261 | { |
262 | 262 | return $command; |
263 | 263 | } |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | { |
270 | 270 | $command = $this->instantiator->buildIfEmpty('ElseIf', $variable); |
271 | 271 | |
272 | - if($command instanceof Mailcode_Commands_Command_ElseIf_Empty) |
|
272 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_Empty) |
|
273 | 273 | { |
274 | 274 | return $command; |
275 | 275 | } |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | { |
282 | 282 | $command = $this->instantiator->buildIfNotEmpty('ElseIf', $variable); |
283 | 283 | |
284 | - if($command instanceof Mailcode_Commands_Command_ElseIf_NotEmpty) |
|
284 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_NotEmpty) |
|
285 | 285 | { |
286 | 286 | return $command; |
287 | 287 | } |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | { |
294 | 294 | $command = $this->instantiator->buildIfBiggerThan('ElseIf', $variable, $value); |
295 | 295 | |
296 | - if($command instanceof Mailcode_Commands_Command_ElseIf_BiggerThan) |
|
296 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_BiggerThan) |
|
297 | 297 | { |
298 | 298 | return $command; |
299 | 299 | } |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | { |
306 | 306 | $command = $this->instantiator->buildIfSmallerThan('ElseIf', $variable, $value); |
307 | 307 | |
308 | - if($command instanceof Mailcode_Commands_Command_ElseIf_SmallerThan) |
|
308 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_SmallerThan) |
|
309 | 309 | { |
310 | 310 | return $command; |
311 | 311 | } |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | { |
318 | 318 | $command = $this->instantiator->buildIfEquals('ElseIf', $variable, $value); |
319 | 319 | |
320 | - if($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber) |
|
320 | + if ($command instanceof Mailcode_Commands_Command_ElseIf_EqualsNumber) |
|
321 | 321 | { |
322 | 322 | return $command; |
323 | 323 | } |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | */ |
21 | 21 | class Mailcode_Factory_Instantiator |
22 | 22 | { |
23 | - public function buildIf(string $ifType, string $params, string $type='') : Mailcode_Commands_IfBase |
|
23 | + public function buildIf(string $ifType, string $params, string $type = '') : Mailcode_Commands_IfBase |
|
24 | 24 | { |
25 | 25 | $stringType = $type; |
26 | 26 | |
27 | - if(!empty($type)) |
|
27 | + if (!empty($type)) |
|
28 | 28 | { |
29 | 29 | $stringType = ' '.$type; |
30 | 30 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | |
44 | 44 | $this->checkCommand($command); |
45 | 45 | |
46 | - if($command instanceof Mailcode_Commands_IfBase) |
|
46 | + if ($command instanceof Mailcode_Commands_IfBase) |
|
47 | 47 | { |
48 | 48 | return $command; |
49 | 49 | } |
@@ -51,9 +51,9 @@ discard block |
||
51 | 51 | throw $this->exceptionUnexpectedType('IfBase', $command); |
52 | 52 | } |
53 | 53 | |
54 | - public function buildIfVar(string $ifType, string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_IfBase |
|
54 | + public function buildIfVar(string $ifType, string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_IfBase |
|
55 | 55 | { |
56 | - if($quoteValue) |
|
56 | + if ($quoteValue) |
|
57 | 57 | { |
58 | 58 | $value = $this->quoteString($value); |
59 | 59 | } |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @return Mailcode_Commands_IfBase |
89 | 89 | * @throws Mailcode_Factory_Exception |
90 | 90 | */ |
91 | - public function buildIfContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false, string $containsType='contains') : Mailcode_Commands_IfBase |
|
91 | + public function buildIfContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false, string $containsType = 'contains') : Mailcode_Commands_IfBase |
|
92 | 92 | { |
93 | 93 | $condition = sprintf( |
94 | 94 | '%s%s"%s"', |
@@ -100,23 +100,23 @@ discard block |
||
100 | 100 | return $this->buildIf($ifType, $condition, $containsType); |
101 | 101 | } |
102 | 102 | |
103 | - private function renderListKeywords(bool $caseInsensitive=false, bool $regexEnabled=false) : string |
|
103 | + private function renderListKeywords(bool $caseInsensitive = false, bool $regexEnabled = false) : string |
|
104 | 104 | { |
105 | 105 | $keywords = array(); |
106 | 106 | |
107 | - if($caseInsensitive) |
|
107 | + if ($caseInsensitive) |
|
108 | 108 | { |
109 | 109 | $keywords[] = Mailcode_Commands_Keywords::TYPE_INSENSITIVE; |
110 | 110 | } |
111 | 111 | |
112 | - if($regexEnabled) |
|
112 | + if ($regexEnabled) |
|
113 | 113 | { |
114 | 114 | $keywords[] = Mailcode_Commands_Keywords::TYPE_REGEX; |
115 | 115 | } |
116 | 116 | |
117 | 117 | $keywordsString = ''; |
118 | 118 | |
119 | - if(!empty($keywords)) |
|
119 | + if (!empty($keywords)) |
|
120 | 120 | { |
121 | 121 | $keywordsString = ' '.implode(' ', $keywords); |
122 | 122 | } |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | * @return Mailcode_Commands_IfBase |
134 | 134 | * @throws Mailcode_Factory_Exception |
135 | 135 | */ |
136 | - public function buildIfNotContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_IfBase |
|
136 | + public function buildIfNotContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_IfBase |
|
137 | 137 | { |
138 | 138 | return $this->buildIfContains($ifType, $variable, $searchTerms, $caseInsensitive, $regexEnabled, 'not-contains'); |
139 | 139 | } |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * @return Mailcode_Commands_IfBase |
149 | 149 | * @throws Mailcode_Factory_Exception |
150 | 150 | */ |
151 | - public function buildIfListContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false, string $containsType='list-contains') : Mailcode_Commands_IfBase |
|
151 | + public function buildIfListContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false, string $containsType = 'list-contains') : Mailcode_Commands_IfBase |
|
152 | 152 | { |
153 | 153 | return $this->buildIfContains($ifType, $variable, $searchTerms, $caseInsensitive, $regexEnabled, $containsType); |
154 | 154 | } |
@@ -162,17 +162,17 @@ discard block |
||
162 | 162 | * @return Mailcode_Commands_IfBase |
163 | 163 | * @throws Mailcode_Factory_Exception |
164 | 164 | */ |
165 | - public function buildIfListNotContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive=false, bool $regexEnabled=false) : Mailcode_Commands_IfBase |
|
165 | + public function buildIfListNotContains(string $ifType, string $variable, array $searchTerms, bool $caseInsensitive = false, bool $regexEnabled = false) : Mailcode_Commands_IfBase |
|
166 | 166 | { |
167 | 167 | return $this->buildIfContains($ifType, $variable, $searchTerms, $caseInsensitive, $regexEnabled, 'list-not-contains'); |
168 | 168 | } |
169 | 169 | |
170 | - public function buildIfBeginsWith(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
170 | + public function buildIfBeginsWith(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
171 | 171 | { |
172 | 172 | return $this->buildIfSearch($ifType, 'begins-with', $variable, $search, $caseInsensitive); |
173 | 173 | } |
174 | 174 | |
175 | - public function buildIfEndsWith(string $ifType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
175 | + public function buildIfEndsWith(string $ifType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
176 | 176 | { |
177 | 177 | return $this->buildIfSearch($ifType, 'ends-with', $variable, $search, $caseInsensitive); |
178 | 178 | } |
@@ -222,11 +222,11 @@ discard block |
||
222 | 222 | ); |
223 | 223 | } |
224 | 224 | |
225 | - private function buildIfSearch(string $ifType, string $subType, string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_IfBase |
|
225 | + private function buildIfSearch(string $ifType, string $subType, string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_IfBase |
|
226 | 226 | { |
227 | 227 | $keyword = ' '; |
228 | 228 | |
229 | - if($caseInsensitive) |
|
229 | + if ($caseInsensitive) |
|
230 | 230 | { |
231 | 231 | $keyword = ' '.Mailcode_Commands_Keywords::TYPE_INSENSITIVE; |
232 | 232 | } |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | |
256 | 256 | public function checkCommand(Mailcode_Commands_Command $command) : void |
257 | 257 | { |
258 | - if($command->isValid()) |
|
258 | + if ($command->isValid()) |
|
259 | 259 | { |
260 | 260 | return; |
261 | 261 | } |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | */ |
278 | 278 | public function quoteString(string $string) : string |
279 | 279 | { |
280 | - if(substr($string, 0, 1) === '"' && substr($string, -1, 1) === '"') { |
|
280 | + if (substr($string, 0, 1) === '"' && substr($string, -1, 1) === '"') { |
|
281 | 281 | return $string; |
282 | 282 | } |
283 | 283 |
@@ -26,14 +26,14 @@ |
||
26 | 26 | */ |
27 | 27 | trait Mailcode_Traits_Commands_Validation_Multiline |
28 | 28 | { |
29 | - /** |
|
30 | - * @var boolean |
|
31 | - */ |
|
29 | + /** |
|
30 | + * @var boolean |
|
31 | + */ |
|
32 | 32 | protected $multiline = false; |
33 | 33 | |
34 | - /** |
|
35 | - * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL |
|
36 | - */ |
|
34 | + /** |
|
35 | + * @var Mailcode_Parser_Statement_Tokenizer_Token_Keyword|NULL |
|
36 | + */ |
|
37 | 37 | protected $multilineToken; |
38 | 38 | |
39 | 39 | protected function validateSyntax_multiline() : void |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | $this->multiline = $val->isValid(); |
44 | 44 | |
45 | - if($val->isValid()) |
|
45 | + if ($val->isValid()) |
|
46 | 46 | { |
47 | 47 | $this->multilineToken = $val->getToken(); |
48 | 48 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function getMultilineToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword |
57 | 57 | { |
58 | - if($this->multilineToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword) |
|
58 | + if ($this->multilineToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword) |
|
59 | 59 | { |
60 | 60 | return $this->multilineToken; |
61 | 61 | } |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $this |
42 | 42 | ); |
43 | 43 | |
44 | - if(!$this->params->isValid() && $this->requiresParameters()) |
|
44 | + if (!$this->params->isValid() && $this->requiresParameters()) |
|
45 | 45 | { |
46 | 46 | $error = $this->params->getValidationResult(); |
47 | 47 |
@@ -40,15 +40,15 @@ |
||
40 | 40 | { |
41 | 41 | $opening = $this->getOpeningCommand(); |
42 | 42 | |
43 | - if($opening === null) { |
|
43 | + if ($opening === null) { |
|
44 | 44 | return array(); |
45 | 45 | } |
46 | 46 | |
47 | 47 | $siblings = $opening->getSiblingCommands(); |
48 | 48 | $result = array(); |
49 | - foreach($siblings as $sibling) |
|
49 | + foreach ($siblings as $sibling) |
|
50 | 50 | { |
51 | - if($sibling !== $this) { |
|
51 | + if ($sibling !== $this) { |
|
52 | 52 | $result[] = $sibling; |
53 | 53 | } |
54 | 54 | } |
@@ -84,15 +84,15 @@ discard block |
||
84 | 84 | { |
85 | 85 | $literals = $this->params->getInfo()->getStringLiterals(); |
86 | 86 | |
87 | - if(empty($literals)) { |
|
87 | + if (empty($literals)) { |
|
88 | 88 | return; |
89 | 89 | } |
90 | 90 | |
91 | - foreach($literals as $literal) |
|
91 | + foreach ($literals as $literal) |
|
92 | 92 | { |
93 | 93 | $parts = ConvertHelper::explodeTrim(' ', $literal->getText()); |
94 | 94 | |
95 | - foreach($parts as $part) { |
|
95 | + foreach ($parts as $part) { |
|
96 | 96 | $this->addClass($part); |
97 | 97 | } |
98 | 98 | } |
@@ -106,9 +106,9 @@ discard block |
||
106 | 106 | { |
107 | 107 | $className = trim($className); |
108 | 108 | |
109 | - if($this->isClassNameValid($className)) |
|
109 | + if ($this->isClassNameValid($className)) |
|
110 | 110 | { |
111 | - if(!in_array($className, $this->classes)) { |
|
111 | + if (!in_array($className, $this->classes)) { |
|
112 | 112 | $this->classes[] = $className; |
113 | 113 | } |
114 | 114 | |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | |
141 | 141 | public function preProcessOpening(): string |
142 | 142 | { |
143 | - if($this->isMultiline()) { |
|
143 | + if ($this->isMultiline()) { |
|
144 | 144 | return sprintf('<pre%s>', $this->renderAttributes()); |
145 | 145 | } |
146 | 146 | |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | |
150 | 150 | public function preProcessClosing(): string |
151 | 151 | { |
152 | - if($this->isMultiline()) { |
|
152 | + if ($this->isMultiline()) { |
|
153 | 153 | return '</pre>'; |
154 | 154 | } |
155 | 155 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | |
159 | 159 | private function renderAttributes() : string |
160 | 160 | { |
161 | - if(empty($this->classes)) { |
|
161 | + if (empty($this->classes)) { |
|
162 | 162 | return ''; |
163 | 163 | } |
164 | 164 |
@@ -25,16 +25,16 @@ |
||
25 | 25 | { |
26 | 26 | $command = $location->getPlaceholder()->getCommand(); |
27 | 27 | |
28 | - if($command instanceof Mailcode_Interfaces_Commands_PreProcessing) |
|
28 | + if ($command instanceof Mailcode_Interfaces_Commands_PreProcessing) |
|
29 | 29 | { |
30 | 30 | return $command->preProcessOpening(); |
31 | 31 | } |
32 | 32 | |
33 | - if($command instanceof Mailcode_Commands_Command_Type_Closing) |
|
33 | + if ($command instanceof Mailcode_Commands_Command_Type_Closing) |
|
34 | 34 | { |
35 | 35 | $opening = $command->getOpeningCommand(); |
36 | 36 | |
37 | - if($opening instanceof Mailcode_Interfaces_Commands_PreProcessing) { |
|
37 | + if ($opening instanceof Mailcode_Interfaces_Commands_PreProcessing) { |
|
38 | 38 | return $opening->preProcessClosing(); |
39 | 39 | } |
40 | 40 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | // This ending command is tied to a preprocessing command: Since |
26 | 26 | // we do not want to keep these, we return an empty string to strip |
27 | 27 | // it out. |
28 | - if($command->getOpeningCommand() instanceof Mailcode_Interfaces_Commands_PreProcessing) { |
|
28 | + if ($command->getOpeningCommand() instanceof Mailcode_Interfaces_Commands_PreProcessing) { |
|
29 | 29 | return ''; |
30 | 30 | } |
31 | 31 |
@@ -37,7 +37,7 @@ |
||
37 | 37 | $formatInfo->getThousandsSeparator() |
38 | 38 | ); |
39 | 39 | |
40 | - if($command->isURLEncoded()) |
|
40 | + if ($command->isURLEncoded()) |
|
41 | 41 | { |
42 | 42 | return sprintf( |
43 | 43 | '${esc.url($%s)}', |