@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | protected function _validateNesting() : void |
71 | 71 | { |
72 | - if($this->findParentFor($this)) |
|
72 | + if ($this->findParentFor($this)) |
|
73 | 73 | { |
74 | 74 | return; |
75 | 75 | } |
@@ -84,12 +84,12 @@ discard block |
||
84 | 84 | { |
85 | 85 | $parent = $command->getParent(); |
86 | 86 | |
87 | - if($parent === null) |
|
87 | + if ($parent === null) |
|
88 | 88 | { |
89 | 89 | return false; |
90 | 90 | } |
91 | 91 | |
92 | - if($parent instanceof Mailcode_Commands_Command_For) |
|
92 | + if ($parent instanceof Mailcode_Commands_Command_For) |
|
93 | 93 | { |
94 | 94 | return true; |
95 | 95 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | $this->instantiator->checkCommand($cmd); |
36 | 36 | |
37 | - if($cmd instanceof Mailcode_Commands_Command_Comment) |
|
37 | + if ($cmd instanceof Mailcode_Commands_Command_Comment) |
|
38 | 38 | { |
39 | 39 | return $cmd; |
40 | 40 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | throw $this->instantiator->exceptionUnexpectedType('Comment', $cmd); |
43 | 43 | } |
44 | 44 | |
45 | - public function for(string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For |
|
45 | + public function for (string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For |
|
46 | 46 | { |
47 | 47 | $sourceVariable = '$'.ltrim($sourceVariable, '$'); |
48 | 48 | $loopVariable = '$'.ltrim($loopVariable, '$'); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | $this->instantiator->checkCommand($cmd); |
66 | 66 | |
67 | - if($cmd instanceof Mailcode_Commands_Command_For) |
|
67 | + if ($cmd instanceof Mailcode_Commands_Command_For) |
|
68 | 68 | { |
69 | 69 | return $cmd; |
70 | 70 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | $this->instantiator->checkCommand($cmd); |
85 | 85 | |
86 | - if($cmd instanceof Mailcode_Commands_Command_Break) |
|
86 | + if ($cmd instanceof Mailcode_Commands_Command_Break) |
|
87 | 87 | { |
88 | 88 | return $cmd; |
89 | 89 | } |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | |
109 | 109 | $this->instantiator->checkCommand($cmd); |
110 | 110 | |
111 | - if($cmd instanceof Mailcode_Commands_Command_Code) |
|
111 | + if ($cmd instanceof Mailcode_Commands_Command_Code) |
|
112 | 112 | { |
113 | 113 | return $cmd; |
114 | 114 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | protected function validateSyntax_params_parse() : void |
35 | 35 | { |
36 | - if(!$this->requiresParameters()) |
|
36 | + if (!$this->requiresParameters()) |
|
37 | 37 | { |
38 | 38 | return; |
39 | 39 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $this->hasFreeformParameters() |
44 | 44 | ); |
45 | 45 | |
46 | - if(!$this->params->isValid()) |
|
46 | + if (!$this->params->isValid()) |
|
47 | 47 | { |
48 | 48 | $error = $this->params->getValidationResult(); |
49 | 49 |
@@ -29,12 +29,12 @@ |
||
29 | 29 | |
30 | 30 | protected function validateSyntax_params_empty() : void |
31 | 31 | { |
32 | - if(!$this->requiresParameters()) |
|
32 | + if (!$this->requiresParameters()) |
|
33 | 33 | { |
34 | 34 | return; |
35 | 35 | } |
36 | 36 | |
37 | - if(empty($this->paramsString)) |
|
37 | + if (empty($this->paramsString)) |
|
38 | 38 | { |
39 | 39 | $this->validationResult->makeError( |
40 | 40 | t('Parameters have to be specified.'), |
@@ -35,14 +35,14 @@ |
||
35 | 35 | |
36 | 36 | protected function validateSyntax_type_supported() : void |
37 | 37 | { |
38 | - if(!$this->supportsType() || empty($this->type)) |
|
38 | + if (!$this->supportsType() || empty($this->type)) |
|
39 | 39 | { |
40 | 40 | return; |
41 | 41 | } |
42 | 42 | |
43 | 43 | $types = $this->getSupportedTypes(); |
44 | 44 | |
45 | - if(!in_array($this->type, $types)) |
|
45 | + if (!in_array($this->type, $types)) |
|
46 | 46 | { |
47 | 47 | $this->validationResult->makeError( |
48 | 48 | t('The command addon %1$s is not supported.', $this->type).' '. |
@@ -31,14 +31,14 @@ |
||
31 | 31 | |
32 | 32 | protected function validateSyntax_params_keywords() : void |
33 | 33 | { |
34 | - if(!$this->supportsLogicKeywords()) |
|
34 | + if (!$this->supportsLogicKeywords()) |
|
35 | 35 | { |
36 | 36 | return; |
37 | 37 | } |
38 | 38 | |
39 | 39 | $this->logicKeywords = new Mailcode_Commands_LogicKeywords($this, $this->paramsString); |
40 | 40 | |
41 | - if(!$this->logicKeywords->isValid()) |
|
41 | + if (!$this->logicKeywords->isValid()) |
|
42 | 42 | { |
43 | 43 | $this->validationResult->makeError( |
44 | 44 | t('Invalid parameters:').' '.$this->logicKeywords->getErrorMessage(), |
@@ -30,7 +30,7 @@ |
||
30 | 30 | |
31 | 31 | protected function validateSyntax_type_unsupported() : void |
32 | 32 | { |
33 | - if($this->supportsType() || empty($this->type)) |
|
33 | + if ($this->supportsType() || empty($this->type)) |
|
34 | 34 | { |
35 | 35 | return; |
36 | 36 | } |
@@ -23,9 +23,9 @@ discard block |
||
23 | 23 | const ERROR_INVALID_COMMAND_CREATED = 50001; |
24 | 24 | const ERROR_UNEXPECTED_COMMAND_TYPE = 50002; |
25 | 25 | |
26 | - /** |
|
27 | - * @var Mailcode_Factory_CommandSets |
|
28 | - */ |
|
26 | + /** |
|
27 | + * @var Mailcode_Factory_CommandSets |
|
28 | + */ |
|
29 | 29 | private static $commandSets; |
30 | 30 | |
31 | 31 | // region Show commands |
@@ -409,34 +409,34 @@ discard block |
||
409 | 409 | return self::$commandSets->if()->ifNotEmpty($variable); |
410 | 410 | } |
411 | 411 | |
412 | - /** |
|
413 | - * Creates a renderer instance, which can be used to easily |
|
414 | - * create and convert commands to strings. |
|
415 | - * |
|
416 | - * @return Mailcode_Renderer |
|
417 | - */ |
|
412 | + /** |
|
413 | + * Creates a renderer instance, which can be used to easily |
|
414 | + * create and convert commands to strings. |
|
415 | + * |
|
416 | + * @return Mailcode_Renderer |
|
417 | + */ |
|
418 | 418 | public static function createRenderer() : Mailcode_Renderer |
419 | 419 | { |
420 | 420 | return new Mailcode_Renderer(); |
421 | 421 | } |
422 | 422 | |
423 | - /** |
|
424 | - * Creates a printer instance, which works like the renderer, |
|
425 | - * but outputs the generated strings to standard output. |
|
426 | - * |
|
427 | - * @return Mailcode_Printer |
|
428 | - */ |
|
423 | + /** |
|
424 | + * Creates a printer instance, which works like the renderer, |
|
425 | + * but outputs the generated strings to standard output. |
|
426 | + * |
|
427 | + * @return Mailcode_Printer |
|
428 | + */ |
|
429 | 429 | public static function createPrinter() : Mailcode_Printer |
430 | 430 | { |
431 | 431 | return new Mailcode_Printer(); |
432 | 432 | } |
433 | 433 | |
434 | - /** |
|
435 | - * Gets/creates the global instance of the date format info |
|
436 | - * class, used to handle date formatting aspects. |
|
437 | - * |
|
438 | - * @return Mailcode_Date_FormatInfo |
|
439 | - */ |
|
434 | + /** |
|
435 | + * Gets/creates the global instance of the date format info |
|
436 | + * class, used to handle date formatting aspects. |
|
437 | + * |
|
438 | + * @return Mailcode_Date_FormatInfo |
|
439 | + */ |
|
440 | 440 | public static function createDateInfo() : Mailcode_Date_FormatInfo |
441 | 441 | { |
442 | 442 | return Mailcode_Date_FormatInfo::getInstance(); |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * @return Mailcode_Commands_Command_ShowDate |
52 | 52 | * @throws Mailcode_Factory_Exception |
53 | 53 | */ |
54 | - public static function showDate(string $variableName, string $formatString="") : Mailcode_Commands_Command_ShowDate |
|
54 | + public static function showDate(string $variableName, string $formatString = "") : Mailcode_Commands_Command_ShowDate |
|
55 | 55 | { |
56 | 56 | return self::$commandSets->show()->showDate($variableName, $formatString); |
57 | 57 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | * @return Mailcode_Commands_Command_ShowNumber |
66 | 66 | * @throws Mailcode_Factory_Exception |
67 | 67 | */ |
68 | - public static function showNumber(string $variableName, string $formatString="") : Mailcode_Commands_Command_ShowNumber |
|
68 | + public static function showNumber(string $variableName, string $formatString = "") : Mailcode_Commands_Command_ShowNumber |
|
69 | 69 | { |
70 | 70 | return self::$commandSets->show()->showNumber($variableName, $formatString); |
71 | 71 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * |
98 | 98 | * @see Mailcode_Factory::ERROR_INVALID_COMMAND_CREATED |
99 | 99 | */ |
100 | - public static function setVar(string $variableName, string $value, bool $quoteValue=true) : Mailcode_Commands_Command_SetVariable |
|
100 | + public static function setVar(string $variableName, string $value, bool $quoteValue = true) : Mailcode_Commands_Command_SetVariable |
|
101 | 101 | { |
102 | 102 | return self::$commandSets->set()->setVar($variableName, $value, $quoteValue); |
103 | 103 | } |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | * @return Mailcode_Commands_Command_For |
161 | 161 | * @throws Mailcode_Factory_Exception |
162 | 162 | */ |
163 | - public static function for(string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For |
|
163 | + public static function for (string $sourceVariable, string $loopVariable) : Mailcode_Commands_Command_For |
|
164 | 164 | { |
165 | 165 | return self::$commandSets->misc()->for($sourceVariable, $loopVariable); |
166 | 166 | } |
@@ -183,13 +183,13 @@ discard block |
||
183 | 183 | return self::$commandSets->if()->else(); |
184 | 184 | } |
185 | 185 | |
186 | - public static function if(string $condition, string $type='') : Mailcode_Commands_Command_If |
|
186 | + public static function if (string $condition, string $type = '') : Mailcode_Commands_Command_If |
|
187 | 187 | { |
188 | 188 | return self::$commandSets->if()->if($condition, $type); |
189 | 189 | } |
190 | 190 | |
191 | 191 | |
192 | - public static function elseIf(string $condition, string $type='') : Mailcode_Commands_Command_ElseIf |
|
192 | + public static function elseIf (string $condition, string $type = '') : Mailcode_Commands_Command_ElseIf |
|
193 | 193 | { |
194 | 194 | return self::$commandSets->elseIf()->elseIf($condition, $type); |
195 | 195 | } |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | |
207 | 207 | // region IF variable |
208 | 208 | |
209 | - public static function ifVar(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
209 | + public static function ifVar(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
210 | 210 | { |
211 | 211 | return self::$commandSets->if()->ifVar($variable, $operand, $value, $quoteValue); |
212 | 212 | } |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | return self::$commandSets->if()->ifVarString($variable, $operand, $value); |
217 | 217 | } |
218 | 218 | |
219 | - public static function ifVarEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
219 | + public static function ifVarEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
220 | 220 | { |
221 | 221 | return self::$commandSets->if()->ifVarEquals($variable, $value, $quoteValue); |
222 | 222 | } |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | return self::$commandSets->if()->ifVarEqualsString($variable, $value); |
227 | 227 | } |
228 | 228 | |
229 | - public static function ifVarNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
229 | + public static function ifVarNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
230 | 230 | { |
231 | 231 | return self::$commandSets->if()->ifVarNotEquals($variable, $value, $quoteValue); |
232 | 232 | } |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | return self::$commandSets->if()->ifVarNotEqualsString($variable, $value); |
237 | 237 | } |
238 | 238 | |
239 | - public static function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
239 | + public static function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
240 | 240 | { |
241 | 241 | return self::$commandSets->elseIf()->elseIfVar($variable, $operand, $value, $quoteValue); |
242 | 242 | } |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | return self::$commandSets->elseIf()->elseIfVarString($variable, $operand, $value); |
247 | 247 | } |
248 | 248 | |
249 | - public static function elseIfVarEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
249 | + public static function elseIfVarEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
250 | 250 | { |
251 | 251 | return self::$commandSets->elseIf()->elseIfVarEquals($variable, $value, $quoteValue); |
252 | 252 | } |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | return self::$commandSets->elseIf()->elseIfVarEqualsString($variable, $value); |
257 | 257 | } |
258 | 258 | |
259 | - public static function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_ElseIf_Variable |
|
259 | + public static function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_ElseIf_Variable |
|
260 | 260 | { |
261 | 261 | return self::$commandSets->elseIf()->elseIfVarNotEquals($variable, $value, $quoteValue); |
262 | 262 | } |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | |
279 | 279 | // endregion |
280 | 280 | |
281 | - public static function ifBeginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_BeginsWith |
|
281 | + public static function ifBeginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_BeginsWith |
|
282 | 282 | { |
283 | 283 | return self::$commandSets->if()->ifBeginsWith($variable, $search, $caseInsensitive); |
284 | 284 | } |
@@ -293,17 +293,17 @@ discard block |
||
293 | 293 | return self::$commandSets->if()->ifSmallerThan($variable, $number); |
294 | 294 | } |
295 | 295 | |
296 | - public static function ifEndsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_EndsWith |
|
296 | + public static function ifEndsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_EndsWith |
|
297 | 297 | { |
298 | 298 | return self::$commandSets->if()->ifEndsWith($variable, $search, $caseInsensitive); |
299 | 299 | } |
300 | 300 | |
301 | - public static function elseIfBeginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
301 | + public static function elseIfBeginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_BeginsWith |
|
302 | 302 | { |
303 | 303 | return self::$commandSets->elseIf()->elseIfBeginsWith($variable, $search, $caseInsensitive); |
304 | 304 | } |
305 | 305 | |
306 | - public static function elseIfEndsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
306 | + public static function elseIfEndsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_EndsWith |
|
307 | 307 | { |
308 | 308 | return self::$commandSets->elseIf()->elseIfEndsWith($variable, $search, $caseInsensitive); |
309 | 309 | } |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | |
321 | 321 | // region Contains |
322 | 322 | |
323 | - public static function ifContains(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains |
|
323 | + public static function ifContains(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains |
|
324 | 324 | { |
325 | 325 | return self::$commandSets->if()->ifContains($variable, array($search), $caseInsensitive); |
326 | 326 | } |
@@ -334,12 +334,12 @@ discard block |
||
334 | 334 | * @return Mailcode_Commands_Command_If_Contains |
335 | 335 | * @throws Mailcode_Factory_Exception |
336 | 336 | */ |
337 | - public static function ifContainsAny(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains |
|
337 | + public static function ifContainsAny(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains |
|
338 | 338 | { |
339 | 339 | return self::$commandSets->if()->ifContains($variable, $searchTerms, $caseInsensitive); |
340 | 340 | } |
341 | 341 | |
342 | - public static function elseIfContains(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains |
|
342 | + public static function elseIfContains(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_Contains |
|
343 | 343 | { |
344 | 344 | return self::$commandSets->elseIf()->elseIfContains($variable, array($search), $caseInsensitive); |
345 | 345 | } |
@@ -353,12 +353,12 @@ discard block |
||
353 | 353 | * @return Mailcode_Commands_Command_ElseIf_Contains |
354 | 354 | * @throws Mailcode_Factory_Exception |
355 | 355 | */ |
356 | - public static function elseIfContainsAny(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_Contains |
|
356 | + public static function elseIfContainsAny(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_Contains |
|
357 | 357 | { |
358 | 358 | return self::$commandSets->elseIf()->elseIfContains($variable, $searchTerms, $caseInsensitive); |
359 | 359 | } |
360 | 360 | |
361 | - public static function ifNotContains(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_NotContains |
|
361 | + public static function ifNotContains(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_NotContains |
|
362 | 362 | { |
363 | 363 | return self::$commandSets->if()->ifNotContains($variable, array($search), $caseInsensitive); |
364 | 364 | } |
@@ -372,12 +372,12 @@ discard block |
||
372 | 372 | * @return Mailcode_Commands_Command_If_NotContains |
373 | 373 | * @throws Mailcode_Factory_Exception |
374 | 374 | */ |
375 | - public static function ifNotContainsAny(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_NotContains |
|
375 | + public static function ifNotContainsAny(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_NotContains |
|
376 | 376 | { |
377 | 377 | return self::$commandSets->if()->ifNotContains($variable, $searchTerms, $caseInsensitive); |
378 | 378 | } |
379 | 379 | |
380 | - public static function elseIfNotContains(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_NotContains |
|
380 | + public static function elseIfNotContains(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_NotContains |
|
381 | 381 | { |
382 | 382 | return self::$commandSets->elseIf()->elseIfNotContains($variable, array($search), $caseInsensitive); |
383 | 383 | } |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | * @return Mailcode_Commands_Command_ElseIf_NotContains |
392 | 392 | * @throws Mailcode_Factory_Exception |
393 | 393 | */ |
394 | - public static function elseIfNotContainsAny(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_ElseIf_NotContains |
|
394 | + public static function elseIfNotContainsAny(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_ElseIf_NotContains |
|
395 | 395 | { |
396 | 396 | return self::$commandSets->elseIf()->elseIfNotContains($variable, $searchTerms, $caseInsensitive); |
397 | 397 | } |
@@ -444,7 +444,7 @@ discard block |
||
444 | 444 | |
445 | 445 | public static function init() : void |
446 | 446 | { |
447 | - if(!isset(self::$commandSets)) |
|
447 | + if (!isset(self::$commandSets)) |
|
448 | 448 | { |
449 | 449 | self::$commandSets = new Mailcode_Factory_CommandSets(); |
450 | 450 | } |
@@ -178,10 +178,12 @@ |
||
178 | 178 | |
179 | 179 | // endregion |
180 | 180 | |
181 | - public static function else() : Mailcode_Commands_Command_Else |
|
181 | + public static function else { |
|
182 | + () : Mailcode_Commands_Command_Else |
|
182 | 183 | { |
183 | 184 | return self::$commandSets->if()->else(); |
184 | 185 | } |
186 | + } |
|
185 | 187 | |
186 | 188 | public static function if(string $condition, string $type='') : Mailcode_Commands_Command_If |
187 | 189 | { |
@@ -20,11 +20,11 @@ discard block |
||
20 | 20 | */ |
21 | 21 | class Mailcode_Factory_CommandSets_Set_If extends Mailcode_Factory_CommandSets_IfBase |
22 | 22 | { |
23 | - public function if(string $condition, string $type='') : Mailcode_Commands_Command_If |
|
23 | + public function if (string $condition, string $type = '') : Mailcode_Commands_Command_If |
|
24 | 24 | { |
25 | 25 | $command = $this->instantiator->buildIf('If', $condition, $type); |
26 | 26 | |
27 | - if($command instanceof Mailcode_Commands_Command_If) |
|
27 | + if ($command instanceof Mailcode_Commands_Command_If) |
|
28 | 28 | { |
29 | 29 | return $command; |
30 | 30 | } |
@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | throw $this->instantiator->exceptionUnexpectedType('If', $command); |
33 | 33 | } |
34 | 34 | |
35 | - public function ifVar(string $variable, string $operand, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
35 | + public function ifVar(string $variable, string $operand, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
36 | 36 | { |
37 | 37 | $command = $this->instantiator->buildIfVar('If', $variable, $operand, $value, $quoteValue); |
38 | 38 | |
39 | - if($command instanceof Mailcode_Commands_Command_If_Variable) |
|
39 | + if ($command instanceof Mailcode_Commands_Command_If_Variable) |
|
40 | 40 | { |
41 | 41 | return $command; |
42 | 42 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | { |
49 | 49 | $command = $this->instantiator->buildIfVar('If', $variable, $operand, $value, true); |
50 | 50 | |
51 | - if($command instanceof Mailcode_Commands_Command_If_Variable) |
|
51 | + if ($command instanceof Mailcode_Commands_Command_If_Variable) |
|
52 | 52 | { |
53 | 53 | return $command; |
54 | 54 | } |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | throw $this->instantiator->exceptionUnexpectedType('IfVarString', $command); |
57 | 57 | } |
58 | 58 | |
59 | - public function ifVarEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
59 | + public function ifVarEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
60 | 60 | { |
61 | 61 | $command = $this->instantiator->buildIfVar('If', $variable, '==', $value, $quoteValue); |
62 | 62 | |
63 | - if($command instanceof Mailcode_Commands_Command_If_Variable) |
|
63 | + if ($command instanceof Mailcode_Commands_Command_If_Variable) |
|
64 | 64 | { |
65 | 65 | return $command; |
66 | 66 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | { |
73 | 73 | $command = $this->instantiator->buildIfVar('If', $variable, '==', $value, true); |
74 | 74 | |
75 | - if($command instanceof Mailcode_Commands_Command_If_Variable) |
|
75 | + if ($command instanceof Mailcode_Commands_Command_If_Variable) |
|
76 | 76 | { |
77 | 77 | return $command; |
78 | 78 | } |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | throw $this->instantiator->exceptionUnexpectedType('IfarEqualsString', $command); |
81 | 81 | } |
82 | 82 | |
83 | - public function ifVarNotEquals(string $variable, string $value, bool $quoteValue=false) : Mailcode_Commands_Command_If_Variable |
|
83 | + public function ifVarNotEquals(string $variable, string $value, bool $quoteValue = false) : Mailcode_Commands_Command_If_Variable |
|
84 | 84 | { |
85 | 85 | $command = $this->instantiator->buildIfVar('If', $variable, '!=', $value, $quoteValue); |
86 | 86 | |
87 | - if($command instanceof Mailcode_Commands_Command_If_Variable) |
|
87 | + if ($command instanceof Mailcode_Commands_Command_If_Variable) |
|
88 | 88 | { |
89 | 89 | return $command; |
90 | 90 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | { |
97 | 97 | $command = $this->instantiator->buildIfVar('If', $variable, '!=', $value, true); |
98 | 98 | |
99 | - if($command instanceof Mailcode_Commands_Command_If_Variable) |
|
99 | + if ($command instanceof Mailcode_Commands_Command_If_Variable) |
|
100 | 100 | { |
101 | 101 | return $command; |
102 | 102 | } |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | { |
109 | 109 | $command = $this->instantiator->buildIfEmpty('If', $variable); |
110 | 110 | |
111 | - if($command instanceof Mailcode_Commands_Command_If_Empty) |
|
111 | + if ($command instanceof Mailcode_Commands_Command_If_Empty) |
|
112 | 112 | { |
113 | 113 | return $command; |
114 | 114 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | { |
121 | 121 | $command = $this->instantiator->buildIfNotEmpty('If', $variable); |
122 | 122 | |
123 | - if($command instanceof Mailcode_Commands_Command_If_NotEmpty) |
|
123 | + if ($command instanceof Mailcode_Commands_Command_If_NotEmpty) |
|
124 | 124 | { |
125 | 125 | return $command; |
126 | 126 | } |
@@ -135,11 +135,11 @@ discard block |
||
135 | 135 | * @return Mailcode_Commands_Command_If_Contains |
136 | 136 | * @throws Mailcode_Factory_Exception |
137 | 137 | */ |
138 | - public function ifContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains |
|
138 | + public function ifContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains |
|
139 | 139 | { |
140 | 140 | $command = $this->instantiator->buildIfContains('If', $variable, $searchTerms, $caseInsensitive); |
141 | 141 | |
142 | - if($command instanceof Mailcode_Commands_Command_If_Contains) |
|
142 | + if ($command instanceof Mailcode_Commands_Command_If_Contains) |
|
143 | 143 | { |
144 | 144 | return $command; |
145 | 145 | } |
@@ -154,11 +154,11 @@ discard block |
||
154 | 154 | * @return Mailcode_Commands_Command_If_NotContains |
155 | 155 | * @throws Mailcode_Factory_Exception |
156 | 156 | */ |
157 | - public function ifNotContains(string $variable, array $searchTerms, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_Contains |
|
157 | + public function ifNotContains(string $variable, array $searchTerms, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_Contains |
|
158 | 158 | { |
159 | 159 | $command = $this->instantiator->buildIfNotContains('If', $variable, $searchTerms, $caseInsensitive); |
160 | 160 | |
161 | - if($command instanceof Mailcode_Commands_Command_If_NotContains) |
|
161 | + if ($command instanceof Mailcode_Commands_Command_If_NotContains) |
|
162 | 162 | { |
163 | 163 | return $command; |
164 | 164 | } |
@@ -166,11 +166,11 @@ discard block |
||
166 | 166 | throw $this->instantiator->exceptionUnexpectedType('IfNotContains', $command); |
167 | 167 | } |
168 | 168 | |
169 | - public function ifBeginsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_BeginsWith |
|
169 | + public function ifBeginsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_BeginsWith |
|
170 | 170 | { |
171 | 171 | $command = $this->instantiator->buildIfBeginsWith('If', $variable, $search, $caseInsensitive); |
172 | 172 | |
173 | - if($command instanceof Mailcode_Commands_Command_If_BeginsWith) |
|
173 | + if ($command instanceof Mailcode_Commands_Command_If_BeginsWith) |
|
174 | 174 | { |
175 | 175 | return $command; |
176 | 176 | } |
@@ -178,11 +178,11 @@ discard block |
||
178 | 178 | throw $this->instantiator->exceptionUnexpectedType('IfBeginsWith', $command); |
179 | 179 | } |
180 | 180 | |
181 | - public function ifEndsWith(string $variable, string $search, bool $caseInsensitive=false) : Mailcode_Commands_Command_If_EndsWith |
|
181 | + public function ifEndsWith(string $variable, string $search, bool $caseInsensitive = false) : Mailcode_Commands_Command_If_EndsWith |
|
182 | 182 | { |
183 | 183 | $command = $this->instantiator->buildIfEndsWith('If', $variable, $search, $caseInsensitive); |
184 | 184 | |
185 | - if($command instanceof Mailcode_Commands_Command_If_EndsWith) |
|
185 | + if ($command instanceof Mailcode_Commands_Command_If_EndsWith) |
|
186 | 186 | { |
187 | 187 | return $command; |
188 | 188 | } |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | { |
195 | 195 | $command = $this->instantiator->buildIfBiggerThan('If', $variable, $value); |
196 | 196 | |
197 | - if($command instanceof Mailcode_Commands_Command_If_BiggerThan) |
|
197 | + if ($command instanceof Mailcode_Commands_Command_If_BiggerThan) |
|
198 | 198 | { |
199 | 199 | return $command; |
200 | 200 | } |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | { |
207 | 207 | $command = $this->instantiator->buildIfSmallerThan('If', $variable, $value); |
208 | 208 | |
209 | - if($command instanceof Mailcode_Commands_Command_If_SmallerThan) |
|
209 | + if ($command instanceof Mailcode_Commands_Command_If_SmallerThan) |
|
210 | 210 | { |
211 | 211 | return $command; |
212 | 212 | } |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | { |
219 | 219 | $command = $this->instantiator->buildIfEquals('If', $variable, $value); |
220 | 220 | |
221 | - if($command instanceof Mailcode_Commands_Command_If_EqualsNumber) |
|
221 | + if ($command instanceof Mailcode_Commands_Command_If_EqualsNumber) |
|
222 | 222 | { |
223 | 223 | return $command; |
224 | 224 | } |