@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * @param bool $highlighted |
33 | 33 | * @return Mailcode_Renderer |
34 | 34 | */ |
35 | - public function setOutputHighlighted(bool $highlighted=true) : Mailcode_Renderer |
|
35 | + public function setOutputHighlighted(bool $highlighted = true) : Mailcode_Renderer |
|
36 | 36 | { |
37 | 37 | $this->highlighted = $highlighted; |
38 | 38 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | return $this->command2string(Mailcode_Factory::show()->snippet($snippetName)); |
56 | 56 | } |
57 | 57 | |
58 | - public function setVar(string $variableName, string $value, bool $quoteValue=false) : string |
|
58 | + public function setVar(string $variableName, string $value, bool $quoteValue = false) : string |
|
59 | 59 | { |
60 | 60 | return $this->command2string(Mailcode_Factory::set()->var($variableName, $value, $quoteValue)); |
61 | 61 | } |
@@ -65,79 +65,79 @@ discard block |
||
65 | 65 | return $this->command2string(Mailcode_Factory::set()->varString($variableName, $value)); |
66 | 66 | } |
67 | 67 | |
68 | - public function if(string $condition, string $type='') : string |
|
68 | + public function if (string $condition, string $type = '') : string |
|
69 | 69 | { |
70 | - return $this->command2string(Mailcode_Factory::if()->if($condition, $type)); |
|
70 | + return $this->command2string(Mailcode_Factory::if ()->if($condition, $type)); |
|
71 | 71 | } |
72 | 72 | |
73 | - public function ifVar(string $variable, string $operand, string $value, bool $quoteValue=false) : string |
|
73 | + public function ifVar(string $variable, string $operand, string $value, bool $quoteValue = false) : string |
|
74 | 74 | { |
75 | - return $this->command2string(Mailcode_Factory::if()->var($variable, $operand, $value, $quoteValue)); |
|
75 | + return $this->command2string(Mailcode_Factory::if ()->var($variable, $operand, $value, $quoteValue)); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | public function ifVarString(string $variable, string $operand, string $value) : string |
79 | 79 | { |
80 | - return $this->command2string(Mailcode_Factory::if()->varString($variable, $operand, $value)); |
|
80 | + return $this->command2string(Mailcode_Factory::if ()->varString($variable, $operand, $value)); |
|
81 | 81 | } |
82 | 82 | |
83 | - public function ifVarEquals(string $variable, string $value, bool $quoteValue=false) : string |
|
83 | + public function ifVarEquals(string $variable, string $value, bool $quoteValue = false) : string |
|
84 | 84 | { |
85 | - return $this->command2string(Mailcode_Factory::if()->varEquals($variable, $value, $quoteValue)); |
|
85 | + return $this->command2string(Mailcode_Factory::if ()->varEquals($variable, $value, $quoteValue)); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | public function ifVarEqualsString(string $variable, string $value) : string |
89 | 89 | { |
90 | - return $this->command2string(Mailcode_Factory::if()->varEqualsString($variable, $value)); |
|
90 | + return $this->command2string(Mailcode_Factory::if ()->varEqualsString($variable, $value)); |
|
91 | 91 | } |
92 | 92 | |
93 | - public function ifVarNotEquals(string $variable, string $value, bool $quoteValue=false) : string |
|
93 | + public function ifVarNotEquals(string $variable, string $value, bool $quoteValue = false) : string |
|
94 | 94 | { |
95 | - return $this->command2string(Mailcode_Factory::if()->varNotEquals($variable, $value, $quoteValue)); |
|
95 | + return $this->command2string(Mailcode_Factory::if ()->varNotEquals($variable, $value, $quoteValue)); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | public function ifVarNotEqualsString(string $variable, string $value) : string |
99 | 99 | { |
100 | - return $this->command2string(Mailcode_Factory::if()->varNotEqualsString($variable, $value)); |
|
100 | + return $this->command2string(Mailcode_Factory::if ()->varNotEqualsString($variable, $value)); |
|
101 | 101 | } |
102 | 102 | |
103 | - public function elseIf(string $condition, string $type='') : string |
|
103 | + public function elseIf (string $condition, string $type = '') : string |
|
104 | 104 | { |
105 | - return $this->command2string(Mailcode_Factory::elseIf()->elseIf($condition, $type)); |
|
105 | + return $this->command2string(Mailcode_Factory::elseIf ()->elseIf($condition, $type)); |
|
106 | 106 | } |
107 | 107 | |
108 | - public function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue=false) : string |
|
108 | + public function elseIfVar(string $variable, string $operand, string $value, bool $quoteValue = false) : string |
|
109 | 109 | { |
110 | - return $this->command2string(Mailcode_Factory::elseIf()->var($variable, $operand, $value, $quoteValue)); |
|
110 | + return $this->command2string(Mailcode_Factory::elseIf ()->var($variable, $operand, $value, $quoteValue)); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | public function elseIfVarString(string $variable, string $operand, string $value) : string |
114 | 114 | { |
115 | - return $this->command2string(Mailcode_Factory::elseIf()->varString($variable, $operand, $value)); |
|
115 | + return $this->command2string(Mailcode_Factory::elseIf ()->varString($variable, $operand, $value)); |
|
116 | 116 | } |
117 | 117 | |
118 | - public function elseIfVarEquals(string $variable, string $value, bool $quoteValue=false) : string |
|
118 | + public function elseIfVarEquals(string $variable, string $value, bool $quoteValue = false) : string |
|
119 | 119 | { |
120 | - return $this->command2string(Mailcode_Factory::elseIf()->varEquals($variable, $value, $quoteValue)); |
|
120 | + return $this->command2string(Mailcode_Factory::elseIf ()->varEquals($variable, $value, $quoteValue)); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | public function elseIfVarEqualsString(string $variable, string $value) : string |
124 | 124 | { |
125 | - return $this->command2string(Mailcode_Factory::elseIf()->varEqualsString($variable, $value)); |
|
125 | + return $this->command2string(Mailcode_Factory::elseIf ()->varEqualsString($variable, $value)); |
|
126 | 126 | } |
127 | 127 | |
128 | - public function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue=false) : string |
|
128 | + public function elseIfVarNotEquals(string $variable, string $value, bool $quoteValue = false) : string |
|
129 | 129 | { |
130 | - return $this->command2string(Mailcode_Factory::elseIf()->varNotEquals($variable, $value, $quoteValue)); |
|
130 | + return $this->command2string(Mailcode_Factory::elseIf ()->varNotEquals($variable, $value, $quoteValue)); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | public function elseIfVarNotEqualsString(string $variable, string $value) : string |
134 | 134 | { |
135 | - return $this->command2string(Mailcode_Factory::elseIf()->varNotEqualsString($variable, $value)); |
|
135 | + return $this->command2string(Mailcode_Factory::elseIf ()->varNotEqualsString($variable, $value)); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | public function else() : string |
139 | 139 | { |
140 | - return $this->command2string(Mailcode_Factory::elseIf()->else()); |
|
140 | + return $this->command2string(Mailcode_Factory::elseIf ()->else()); |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | public function end() : string |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | |
153 | 153 | protected function command2string(Mailcode_Commands_Command $command) : string |
154 | 154 | { |
155 | - if($this->highlighted) |
|
155 | + if ($this->highlighted) |
|
156 | 156 | { |
157 | 157 | return $command->getHighlighted(); |
158 | 158 | } |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | $autoload = realpath($root.'/../vendor/autoload.php'); |
18 | 18 | |
19 | 19 | // we need the autoloader to be present |
20 | - if($autoload === false) |
|
20 | + if ($autoload === false) |
|
21 | 21 | { |
22 | 22 | die('<b>ERROR:</b> Autoloader not present. Run composer update first.'); |
23 | 23 | } |
@@ -65,19 +65,19 @@ discard block |
||
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'), |
|
69 | - Mailcode_Factory::if()->contains('CUSTOMER.NAME', array('John')), |
|
70 | - Mailcode_Factory::if()->varEquals('NUMBER', '124'), |
|
68 | + Mailcode_Factory::if ()->if('1 + 1 == 2'), |
|
69 | + Mailcode_Factory::if ()->contains('CUSTOMER.NAME', array('John')), |
|
70 | + Mailcode_Factory::if ()->varEquals('NUMBER', '124'), |
|
71 | 71 | ); |
72 | 72 | |
73 | - $and = Mailcode_Factory::elseIf()->varEqualsString('STRINGVAR', 'John'); |
|
73 | + $and = Mailcode_Factory::elseIf ()->varEqualsString('STRINGVAR', 'John'); |
|
74 | 74 | $and->getLogicKeywords()->appendOR('$STRINGVAR == "Steve"', "variable"); |
75 | 75 | |
76 | 76 | $commands[] = $and; |
77 | 77 | |
78 | 78 | $commands[] = Mailcode_Factory::misc()->end(); |
79 | 79 | |
80 | - foreach($commands as $command) |
|
80 | + foreach ($commands as $command) |
|
81 | 81 | { |
82 | 82 | ?> |
83 | 83 | <p> |
@@ -46,7 +46,7 @@ |
||
46 | 46 | * @param mixed $subject |
47 | 47 | * @param Mailcode_Commands_Command|null $sourceCommand |
48 | 48 | */ |
49 | - public function __construct(string $tokenID, string $matchedText, $subject=null, ?Mailcode_Commands_Command $sourceCommand=null) |
|
49 | + public function __construct(string $tokenID, string $matchedText, $subject = null, ?Mailcode_Commands_Command $sourceCommand = null) |
|
50 | 50 | { |
51 | 51 | $this->tokenID = $tokenID; |
52 | 52 | $this->matchedText = $matchedText; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | { |
34 | 34 | $var = $this->validator->createVariable(); |
35 | 35 | |
36 | - if($var->isValid()) |
|
36 | + if ($var->isValid()) |
|
37 | 37 | { |
38 | 38 | $this->variableToken = $var->getToken(); |
39 | 39 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | public function getVariableToken() : Mailcode_Parser_Statement_Tokenizer_Token_Variable |
50 | 50 | { |
51 | - if(isset($this->variableToken)) |
|
51 | + if (isset($this->variableToken)) |
|
52 | 52 | { |
53 | 53 | return $this->variableToken; |
54 | 54 | } |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | */ |
69 | 69 | public function getVariable() : Mailcode_Variables_Variable |
70 | 70 | { |
71 | - if(isset($this->variableToken)) |
|
71 | + if (isset($this->variableToken)) |
|
72 | 72 | { |
73 | 73 | return $this->variableToken->getVariable(); |
74 | 74 | } |
@@ -116,12 +116,12 @@ discard block |
||
116 | 116 | { |
117 | 117 | $parent = $subject->getParent(); |
118 | 118 | |
119 | - if($parent === null) |
|
119 | + if ($parent === null) |
|
120 | 120 | { |
121 | 121 | return null; |
122 | 122 | } |
123 | 123 | |
124 | - if($parent instanceof Mailcode_Commands_Command_For) |
|
124 | + if ($parent instanceof Mailcode_Commands_Command_For) |
|
125 | 125 | { |
126 | 126 | return $parent; |
127 | 127 | } |
@@ -59,7 +59,7 @@ |
||
59 | 59 | */ |
60 | 60 | public function excludeTags(array $tagNames) |
61 | 61 | { |
62 | - foreach($tagNames as $tagName) |
|
62 | + foreach ($tagNames as $tagName) |
|
63 | 63 | { |
64 | 64 | $this->excludeTag((string)$tagName); |
65 | 65 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | $this->caseInsensitive = $val->isValid(); |
44 | 44 | |
45 | - if($val->isValid()) |
|
45 | + if ($val->isValid()) |
|
46 | 46 | { |
47 | 47 | $this->regexToken = $val->getToken(); |
48 | 48 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function getCaseToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword |
57 | 57 | { |
58 | - if($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword) |
|
58 | + if ($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword) |
|
59 | 59 | { |
60 | 60 | return $this->regexToken; |
61 | 61 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | $this->regexEnabled = $val->isValid(); |
44 | 44 | |
45 | - if($val->isValid()) |
|
45 | + if ($val->isValid()) |
|
46 | 46 | { |
47 | 47 | $this->regexToken = $val->getToken(); |
48 | 48 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function getRegexToken() : ?Mailcode_Parser_Statement_Tokenizer_Token_Keyword |
57 | 57 | { |
58 | - if($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword) |
|
58 | + if ($this->regexToken instanceof Mailcode_Parser_Statement_Tokenizer_Token_Keyword) |
|
59 | 59 | { |
60 | 60 | return $this->regexToken; |
61 | 61 | } |
@@ -74,11 +74,11 @@ |
||
74 | 74 | return new Mailcode_Parser_Statement_Validator_Type_Value($this->statement); |
75 | 75 | } |
76 | 76 | |
77 | - public function createOperand(string $sign='') : Mailcode_Parser_Statement_Validator_Type_Operand |
|
77 | + public function createOperand(string $sign = '') : Mailcode_Parser_Statement_Validator_Type_Operand |
|
78 | 78 | { |
79 | 79 | $validate = new Mailcode_Parser_Statement_Validator_Type_Operand($this->statement); |
80 | 80 | |
81 | - if(!empty($sign)) |
|
81 | + if (!empty($sign)) |
|
82 | 82 | { |
83 | 83 | $validate->setOperandSign($sign); |
84 | 84 | } |
@@ -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 | } |